Jump to content

[SOLVED] $sql = 'SELECT ['id', 'imgpath'] FROM thumb';


y2yang

Recommended Posts

Unless you are trying to make a real fancy gallery you could always just dump all the pictures into one directory and increment the names of the photos. (fotosizer does a great job of that set it to photo%n not images%n. I have seen a bug that adds random spaces on images%n and makes it impossible to call from php.)

 

<code>

<?php

$thumbs = "./gallery/thumbs/"

$images = "./gallery/images/"

$num_img = 52;

for ($i=0,$i <= $num_img, $i++){

?>

<img src="<?php echo $thumbs."photo".$i;?>" alt = ""/>

<img src="<?php echo $images."photo".$i;?>" alt = ""/>

<?php

}

?>

</code>

 

*disclaimer: I wrote this in the quick reply box. I have not ran this or debugged it. I just was throwing out another option. You can also implement pagination on something like this script to create several galleries from the same code.*

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.