I just want to share this snippet.
What it does is finds all links in the href attribute of anchor tags of a given page url.Code:<? $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); ?>
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!



Reply With Quote

Bookmarks