Posted by Sanders Kaufman on 02/01/07 06:08
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.
Navigation:
[Reply to this message]
|