Well, like in most Perl cases, there is MTOWTDI, more than one way to do it. The way that AndyBo suggested will work just fine, but if you have a small library of images, you could make an array to the effect of:<br><br><FONT FACE=monospace><br><br>@image_array = qw(image1.jpg image2.jpg image3.jpg image4.jpg) # and so on and so forth<br><br>foreach $image (@image_array) {<br><br>print "<img src=\"$image\" width=\"100\" height=\"100\">\n";<br># you can change with width and height to whatever you might want them to be<br>}<br><br><br></font><br><br>That should do it.<br><br><br>-Vic<br>