PHP is server side, while going to a specific HTML tag is a browser feature. There is still a way. You will need to fetch that page and search for the exact tag with regex or with DOM manipulation.
$str = file_get_contents('http://your_php_subpage.com');
// to find the specific tag ( for example the image link )
if(preg_match('#<a href="(.*?)" id="viewbt">.*?</a>#', $str, $m)){
var_dump($m);
} else {
echo 'Regex syntax has to be improved to your search criteria'.PHP_EOL;
}
Extra info for regex:
http://php.net/preg_match
I suggest regarding a regex tutorial as well, besides the PHP function. You can do a lot more.