Mega Code Archive

 
Categories / Php / Development
 

Execute shell command dir

<?php $dir = shell_exec("dir"); $subject = "Half-hourly file report."; $body = "The following files are in the current directory : \n\n"; $body .= $dir; echo $body; ?>