View Single Post
  #2  
Old 12-04-2007, 08:11 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,922

To be honest, there is no exact order. To put the files in order you will have to change the code.... look for this bit of code (Starts near line 514):

PHP Code:
//Lets get some images!!

$dir=@opendir($full_server.$album);

//Loop through them all ;).

while($file=@readdir($dir)) { 
and replace it with this:

PHP Code:
//Lets get some images!!
$dir $full_server.$album.'*';

//Loop through them all ;).

foreach(glob($dir) as $file){
    
$file substr($filestrlen($dir)-1); 
That should order them alphabetically.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote