Im using PHP code to create a dropshadow effect on images. I have this for-loop which basically gets an images size (width, height) and then adds a 1px drop shadow effect by using a for loop and its size. for example:
for ($i=1; $i<=$height; $i++){
$display_table.="<img src='dropShadowLeft.jpg'><br>";
}
It works flawless on my computer (using wampserver). But when uploaded to the internet, it always skips a couple of these images, so instead of the dropShadow.jpg one of those squares where it says image not found (or whatever depending on browsers) shows instead.
Is the for loop too fast or something?
What do you think?
Thanks