Index
";
// Define the full path to your folder from root
$path = "/home/trk7tri3/public_html/play/";
// Open the folder
$dir_handle = @opendir($path) or die("Unable to open $path");
echo "";
// Loop through the files
while ($file = readdir($dir_handle)) {
if( !stripos($file, ".html") ) continue;
echo "- $file
";
}
echo "- PHP Tutorial Demo 1-PHP Introduction
" ;
echo "- PHP Tutorial Demo 2-substrings
" ;
echo "- Demo Location detection using PHP
" ;
// Close
closedir($dir_handle);
echo "
";
?>