Help for this page

Select Code to Download


  1. or download this
    # Program execution splits here:
    if ($kidPID=fork()) {
    ...
        # On return from fork, the child process is in this branch
        exec($your_batch_file);
    }