RE: [PHP] include files with PHP 3.0.16

2001-04-16 Thread Stefan Kostopoulos
Tim, Check out the include() and require() function of php. Stefan -Original Message- From: Tim Thorburn [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 5:38 PM To: [EMAIL PROTECTED] Subject: [PHP] include files with PHP 3.0.16 Hi, I'm currently working on a rather large site

Re: [PHP] include files with PHP 3.0.16

2001-04-16 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Tim Thorburn) wrote: > Is there an equivalent to in PHP? And > will it work in version 3.0.16. I've gone through the online manual but > found nothing that would help in this situation. http://php.net/manual/en/function.virtual.php -- CC

RE: [PHP] include files with PHP 3.0.16

2001-04-16 Thread James Atkinson
> Is there an equivalent to in > PHP? And > will it work in version 3.0.16. I've gone through the online manual but > found nothing that would help in this situation. include("filename.inc"); or require("filename.inc"); http://www.php.net/include http://www.php.net/require Enjoy, James