REG EX + cURL

I just want to share this snippet.

<?
	$request_url ='http://www.qualitycodes.com';
 
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, $request_url);	// The url to get links from
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);	// We want to get the respone
	$result = curl_exec($ch);
 
	$regex='|<a.*?href="(.*?)"|';
	preg_match_all($regex,$result,$parts);
	$links=$parts[1];
	foreach($links as $link){
		echo $link."<br>";
	}
	curl_close($ch);
 ?>


What it does is finds all links in the href attribute of anchor tags of a given page url.
So How can I get, the text in between a paragraph tag with a class named title?

<p class=“title”>THE QUICK BROWN FOX</p>

so for this example I just want to have THE QUICK BROWN FOX!

Thanks for all!

$regex=‘|<a.?href="(.?)"|’;
=>
$regex=‘|<p[^>]?class=“title”.?>(.*?)</p>|’;

EDIT: I’m fairly sure that’s wrong, and you’ll have to do some post-regex filtering, because of how *? works, but give it a whack.

Thanks StarLion, I did a few test and it worked actually…
Thanks man, I probably sit to this regex thingy… it’s all Latin to me.

For now, I will dig in to this example of yours. Thanks again.