Jump to content

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


y2yang

Recommended Posts

$sql = "SELECT id, imgpath FROM thumb";

 

 

EDIT: Are you referring to using an array in your query?  Or are 'id' and 'imgpath' fields in your DB?  This is also assuming you are using MySQL.

Link to comment
Share on other sites

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.*

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.