View Single Post
Old 12-20-2007, 04:41 AM   #10 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Quote:
Originally Posted by Village Idiot View Post
Something like this
PHP Code:
 <?php  

$dir 
dir$d ); 
  while( 
false !== ( $entry $dir->read() ) ) { 
if(
$entry!='.' && $entry!='..' && $entry!='index.php' && $entry!='error_log') { 



$arr[] = $entry;

 } 


sort($arr); //making your own bubble sort method will be faster, but I cant find mine
foreach($arr as $val)
{
echo 
$val;
}


      

?>
Okay I just tried that and I got
Code:
Parse error: syntax error, unexpected ')' in index.php on line 47
Orc is offline  
Reply With Quote