//To complete my last note
//If you use some object in your php code
//You will have some problem if you do a exit after include the
//child scripts
//You must use posix_kill() like that :
$CHILD_PID = pcntl_fork();
if($CHILD_PID == 0)
{
include ($script_path);
posix_kill(getmypid(),9);
}
//This code is very simple it can be ameliorate ;)