Hi, I need some professional opinion how to create batch file which will run php scripts in order. It has to run 1st script then wait until it finish and run another one. I know I could do that by joining those script with php , but I cant, so I need solution to run them in order, I was thinking about batch script Please help Thank You
Old DOS trick. Have the first file create a text file just before it ends. Have the second file loop, waiting to open the text file. Once it opens the text file, close the text file and unlink (delete) it. Do the same at the end of the second, beginning and end of the third, etc, files.