I have a series of php scripts that I want to run in a particular order. I tried using:
<?php
exec('file1.php');
exec('file2.php');
exec('file3.php');
?>
to accomplish this, but just got a series of errors. If I run them from the command line, they all work fine... I'm not sure how to do this... if someone can help, that'd be great...