<<first|1|2|3|4|5..lats>>
something like that or even relative.
and also something that organizes it by date or name.
I have only found tutorials on this using sql.I am not using sql for the gallery.I have downloaded a script with something similar to what I need.I wanted to put that part into my script and buld up on it.
Here is the part of my script I need it to be integrated into:
Code: Select all
<?php for ($i=1; file_exists("images/image".($i).".jpg"); $i++) {
$a=getimagesize("images/image".($i).".jpg");
$i=($i);
echo "<td width="".($a[0]).""><a href=preview.php?i=$i target=pre><img border=0 width=100 height=100 src=images/image$i.jpg></a></td>";
}
?>But if you need the other script,I will post that.