Posted by Nu on 02/01/07 08:12
"Sanders Kaufman" <bucky@kaufman.net> wrote in message
news:Klgwh.2288$4H1.1860@newssvr17.news.prodigy.net...
> Nu wrote:
>
> > Also, does it matter if I put "require_once" lower down in the code
after
> > some other code my abort it?
>
> No - and you may find this weird.
> An include/require will be included no matter what.
>
> For example:
> <? php
> if(TRUE){
> include "myfile.php";
> } else {
> include "yourfile.php";
> }
> ?>
>
> In the above example - BOTH files will be included no matter what.
Okay, but both files have include/requires. Will their include/requires be
included, too?
[Back to original message]
|