| Site Map | WizTools.org | jCraze Blog |
![]() |
PHP File BrowserThe code below creates a list of links to the files in the directory where the script is placed.
<ul>
<?
$handler = opendir(".");
while($file=readdir($handler)){
if($file!='.' && $file!='..' && $file!='index.php' && !ereg("^\.",$file)){
$file = htmlspecialchars($file);
echo "<li>";
echo "<a href=\"$file\">";
echo $file;
echo "</a>";
echo "</li>";
}
}
?>
</ul>
|
Sign Guestbook
|
Who is Subhash?
The contents of this site are copyright© 2000-2008, indiWiz.com. All Rights Reserved.