<?php // exec.php$cmd = "dir"; // Windows// $cmd = "ls"; // Linux, Unix & Macexec(escapeshellcmd($cmd), $output, $status);if ($status) echo "Exec command failed";else{echo "<b>";foreach($output as $line) echo "$linen";}?>