12-20-2007, 03:59 AM
|
#8 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
Quote:
Originally Posted by Village Idiot
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>';
}
}
?>
|
|
|
|