Hi guys I have this script and I want to one thing, and that is:
I need to these files can be link to itselfs. And I don' t know how...
Thx
<?
if ($handle = opendir('/home/music')) {
echo "Directory handle: $handle<br>";
echo "Files:<br>";
while (false !== ($file = readdir($handle))) {
echo "$file<br>";
}
closedir($handle);
}
?>