Other User Diary
php read file from directory 

<?php
if ($handle = opendir('.')) {
    while (false !== ($entry = readdir($handle))) {
        if ($entry != "." && $entry != "..") {
            echo "$entry\n";
        }
    }
    closedir($handle);
}
?>

x-xmax
Country       UNITEDSTATES
City               Ohio
Posted On   28/03/2012

5



Other Pages