It REALLY worked in php3 🙂
Don't you know, is there any function that can just insert part of a code?
Maybe you know how to solve my problem with completing included code:
I have a part of code that makes authorization, and I am inserting it in the beginning of another file. It looks like
<?
...
...
if ($auth=="ok") {
?>
<?
include("auth.php3");
...
...
...
} else {...}
?>
Thank you.