php should be able to load pages into memory. then you can parse the html code.
here's some things to play with
PHP Code:
//retrieve HTML code for a given address
function getPageSource($address) {
$page = fopen($address,"r");
$source = stream_get_contents($page);
fclose($page);
return $source;
}
//
function getImgLine($html, $find, $break) {
$lines = explode($break, $html);
foreach($lines as $data) {
if(substr_count($data, $find)) {
return $data;
echo str_replace(">","",$data)."<br>";
}
}
}