Re: [PHP] running php in sequence

2004-03-30 Thread Robby Russell
Edward Peloke typed this on 03/31/2004 08:11 AM: I am using php in combination with ant to create a small automated build process. Will php run sequentially? What I mean is I have a series of modules or tasks: Example: //check out files include("modules/checkout.php") //zip up the files include (

Re: [PHP] running php in sequence

2004-03-30 Thread Ben Joyce
2004 5:11 PM Subject: [PHP] running php in sequence > I am using php in combination with ant to create a small automated build > process. Will php run sequentially? What I mean is I have a series of > modules or tasks: > Example: > > //check out files > include("modules/chec

[PHP] running php in sequence

2004-03-30 Thread Edward Peloke
I am using php in combination with ant to create a small automated build process. Will php run sequentially? What I mean is I have a series of modules or tasks: Example: //check out files include("modules/checkout.php") //zip up the files include ("modules/zip.php") etc Will php wait to execu