Quote:
Originally Posted by apfparadise
Also, I am not sure, but can it be made when the image is not available or the server times out for it to show an image? I created two images like this:
and
Can they be shown if there is no image?
|
I think this is your last issue and this should not be to difficult to address.
Find in the code of post #52 the next code:
Code:
// Image not found
return '<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">' . $vbphrase['image_link_broken'] . '</font></td></tr></table>';
}
} else {
// Server is down
return '<table border="1" cellpadding="2" id="image_found"><tr><td><FONT color="#FF0000">' . $vbphrase['image_server_down'] . '</font></td></tr></table>';
}
and change is to this:
Code:
// Image not found
return '<img src="http://aquatic-photography.com/pics/noimage.gif" border="0" alt="" />';
}
} else {
// Server is down
return '<img src="http://aquatic-photography.com/pics/noserver.gif" border="0" alt="" />';
}
I didn't test this either but i'm pretty sure it works