Posted by Juliette on 12/29/05 02:38
Leszek wrote:
> Included -yes but I need to make sure that prog1.php is done before
> prog2.php starts
>
> Thanks.
> Leszek
>
>
It will be, as Carl said.
The include statement is basically replaced with the code in the file.
This code will then execute.
The second include will only be read after the code from the first file
has all been executed.
The second include statement will then be replaced with the code from
that file etc etc.
[Back to original message]
|