I guess I don't know how. The line of code"rewinddir($handle);" was my attempt at sorting it. I am using this code right now, any suggestions:
<?php
function directory()
{
$handle=opendir("/home/groupvertical/www/pellegirl/pdf/owspring/");
rewinddir($handle);
while ($file = readdir($handle))
{
if ($file == "." || $file == "..")
{ }
else
{
echo "-"; // makes the bulleted list
print "<a href=\"/pellegirl/pdf/owspring/$file\" target=\"_blank\">$file</a><br>\n";
}
}
closedir($handle);
}
?>
<?
echo directory();
?>