Using the following code, I am able to display up to 10 images. What I want is to be able to display all images in the folder without going through an infinite loop and without testing if the image file exist at each loop.
for($i=1; $i<=10; $i++)
{
$filename = "/folder/$i.jpg";
echo "
<img title='$i' src='$filename'>
";
}
Assuming that I have no idea how many images there are in the folder and that I do not want to store this information in a database, how would you display all the images with file names are that are integers ending with a .jpg extension?