Archive - Issue 16
Oct 13, 2006. Lead story: Nurse tells of Darfur horror
-
//define the path as relative
$id = $_GET['id'];
$path = "pdfs/$id";
//using the opendir function
$dir_handle = @opendir($path) or die("Unable to open $path");
//running the while loop
while (false !== ($file = readdir($dir_handle)))
{
if($file!="." && $file!="..")
echo "
-
$file
- "; } //closing the directory closedir($dir_handle); ?>