Forum Moderators: coopster
<a href="link to full size image"><img src="medium size image path here"/></a> <img src="medium size image path here" alt ="" /> <?php
$test="html code here";
$doc=new DOMDocument();
$doc->loadHTML("$test");
$xml=simplexml_import_dom($doc);
$images=$xml->xpath('//img');
foreach ($images as $img) {
$thumburl = $img['src'];
}
$href = preg_match('/\shref="(?<href>[^"]+)"/', $test, $match);
if ($href!="") {
$href = $match[1];
echo $href;
}
else {
echo $thumburl;
}
?>