View Single Post
Old 12-20-2007, 03:59 AM   #8 (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
But how are the strings stored? I cant help you until I know that.
PHP Code:
<?php 

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



   echo 
'<b><a style="color:red;font-family:helvetica;font-size:12px;" href="'.$entry.'">';
   print 
$entry.'<br/>';
   echo 
'</a></b>';

 }
}



     

?>
Orc is offline  
Reply With Quote