From: "Stuart Dallas" <[EMAIL PROTECTED]>
> Collins, Robert <[EMAIL PROTECTED]> wrote:
> > Put something like this in the top of each of the pages that have
> > common functions
> > <PSUDO CODE>
> > if(file_exists("/path/to/file/core_functions.php")){
> > $core_functions = "/path/to/file/core_functions.php";
> > }else{
> > $core_functions =
> > "http://www.domain.com/path/to/file/core_functions.php";
> > }
> > require_once($core_functions);
> > <PSUDO CODE>
>
> If the code can get core_functions.php from your server, so can they!! A
> legal agreement is the only way to go.
Not to mention that if you pull a .php page through HTTP, like you're doing,
you're going to get the parsed result, not the PHP code.
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php