How to use php to retrieve the particular element and attribute from a remote HTML page?
For instance, if the element and attribute to be retrieved had the format:
<a href="/dir/someid/" class="ccc">
Any help would be greatly appreciated.
The code method that will be used:
<?php
$file = fopen ("http://www.example.com/", "r");
if (!$file) {
echo "<p>Unable to open remote file.\n";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
/* This only works if the title and its tags are on one line */
if (preg_match ("@\<title\>(.*)\</title\>@i", $line, $out)) {
$title = $out[1];
break;
}
}
fclose($file);
?>