×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to read a folder content?


PHP - How to read a folder content?

<?php
$folder=dir(".");

while($folderEntry=$folder->read())
{
      echo $folderEntry."<br>";
}

$folder->close();

?>

Category: PHP

 
<< Go back