How to list files in a directory with PHP
By cody 2 Comments
Here’s a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec('dir',$output,$error); while(list(,$row) = each($output)){ ... read more
By cody 2 Comments
Here’s a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec('dir',$output,$error); while(list(,$row) = each($output)){ ... read more