Hi,
I would like to know if this is possible.....I need to display an image hosted at another website on my site. The image name is based on an Id number. The image can be located in two different directorys or may not exsist at all. So, I need to do the following with php:
If an image is found at this url - display it
<img border="0" src="http://www.XXX.com/listing_img/<? echo $row['Id']; ?>1.jpg" width="60" height="41">
If not....try to find it here
<img border="0" src="http://www.XXX.com/propImgs/<? echo $row['Id']; ?>1.jpg" width="60" height="41">
If you still dont see it...display this default image
<img border="0" src="http://www.XXX.com/propImgs/default.jpg" width="60" height="41">
Can you please help me with this?