How can I run several PHP scripts from within another PHP script, like a batch file? I don\'t think include will work, if I understand what include is doing; because each o
If you need any return results from those scripts, you can use the system function.
$result = system('php myscript.php'); $otherresult = system('php myotherscript.php');