i used to use system commands through a php file ..cd \ was working then suddenly after a few tries it stopped :| no matter what i do
<?php
$command = array("cd \","dir");
$result = system($command[0], $return);
?>
Originally asked by: kapitanluffy on Stack Overflow


Answers