View Single Post

  #1 (permalink)  
Old 10-25-2006
frizzle
 
Posts: n/a
Default Ordering array won't work?

Hi there,

I want to scan a dir, put the *.gif into an array, and order that (
01.gif, 02.gif etc),
and put that array into a $_session-array. (Session & Headers are
initiated before this code)
I have the code below, everything works, except for the ordering.

Any clues ?

Thanks, Frizzle.

$dir = opendir("./img/");

while( $file = readdir($dir)){
if (preg_match("/\.gif$/", $file)) {

$filename = preg_replace( "/\.gif$/", '', $file );
$_SESSION['all_pics'][$filename] = "Foobar";

};
};

closedir( $dir );

asort( $_SESSION['all_pics'] );

Reply With Quote