I'm using a socket to retrieve a page from a website, storing it into a buffer, and then echoing the buffer. For some reason, one image is not being displayed. What other treatment does this image need in order to be displayed?
Here is the html:
<td colspan="2" align="center"><img src="turing.image.php?1cf2cbe9d7861853aa8b7e8d484d7dca"></td>
In PHP I'm using a simple command to display the page:
echo $buffer;
Any ideas as to how to request this image? Do I need to request it, store it in a temp directory, and rewrite the img src location?
Thanx,
Curtis