View Single Post
  #10 (permalink)  
Old 10-07-09, 09:50 PM
sac0o01 sac0o01 is offline
Newbie Coder
 
Join Date: Jul 2009
Posts: 16
Thanks: 1
Thanked 0 Times in 0 Posts
I found the problem. Works great!!! Thanks for all your help.

The error was caused by this:
PHP Code:

$PathFIle=$path.$Name
Changed it to this and it works great!
PHP Code:

$PathFile=$path.$Name
One last question if I can bother just once more.

Is there a way to set the display order? Perhaps by date it was saved? If there are duplicates or triplicates of an image (with different file names...) it can be rather difficult to find them because they are spread out through the list. How does the script call up the order?
Reply With Quote