List files present inside the folder - PHP Views : 565
Tagged in : PHP
0 0
Send mail

<?php

$folder="uploaded";
$dir=dir("./$folder/.");
while($filename=$dir->read()) {
echo"$filename";
}
$dir->close();
?>
By kalai, On - 2009-04-23



    Login to add Comments .