|
|

|
|
|
|
|
|
|
Current Research Projects:
|
$path = "../uploads_research/";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle))
{
if($file!="." && $file!="..")
{
$extension = substr($file, -4);
if($extension == '.htm')
{
$name = substr($file, 0, -4);
echo "»$name ";
}
}
}
closedir($dir_handle);
?>
|
|