All pastes #568421 Raw Edit

Mine

public text v1 · immutable
#568421 ·published 2007-06-15 14:57 UTC
rendered paste body
s<?
$theDirectory            = "C:\server\characters";
$listDirectories    = false;

if(is_dir($theDirectory))
{
    echo "<table><tr><td>UserName</td>";
    $dir = opendir($theDirectory);
    while(false !== ($file = readdir($dir)))
    {
        $type    = filetype($theDirectory ."/". $file);
        if($listDirectories || $type != "dir")
        {
            echo "<tr><td>" . $file . "</td>";
            echo "<td>";
            echo "</td></tr>";
        }
    }
    closedir($dir);
    echo "</table>";
}
else
{
    echo $theDirectory . " is not a directory";
}
?>