A part of a.html:
</tr></table></td></tr>
<tr><td><table><tr><td><img src="/a/?id=83059"></td>
<td valign="top">
I had tried other methods to get the '/a/?id=83059' however they didn't work either. So I thought I'd post this method seeing that I'm asking for help.
<?php
$content = file_get_contents('a.html');
preg_match('/<tr><td><table><tr><td><img src="(.*)"></td>/', $content, $two);
print $two[1];
?>
I want '/a/?id=83059' printed out.
However, the problem I believe is because there are a few '"></td>'s in a.html. So I copied a bit of the next line as well to put in place of '"></td>' however that did not work either...
Thanks-