i have following PHP curl and regex code. i'd like to get post header from website. In actual, there are 10 articles. but code returns zero result.
PHP:
<?php
$ch = curl_init();
$url = "www.mahsumakbas.net";
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$content = curl_exec($ch);
curl_close($ch);
@preg_match_all('/<h2 class="entry-title">(.*)<\/h2>/' ,$content, $matches);
for ($i=0; $i< sizeof($matches[1]); $i++)
echo $matches[1][$i]."<br/>";
?>
On www.mahsumakbas.net web page there are 10 <h2 class="entry-title">
enclosed with </h2>
what do i miss?
Try this: