Re: [PHP] R: equivelant of ASP's #include file?

2001-09-14 Thread Christian Reiniger
On Friday 14 September 2001 10:17, --- wrote: There are 3 functions in php that works similar to #include: include(filename.ext): include filename.ext and parse it like a php file require(filename.ext); like include, but it's included only one time, if the code contains two require with

Re: [PHP] R: equivelant of ASP's #include file?

2001-09-14 Thread Jack Dempsey
require will grab the file no matter what (if it exists), include can be used in an if else construct.there's probably megabytes of text on this subject in the archives Christian Reiniger wrote: On Friday 14 September 2001 10:17, --- wrote: There are 3 functions in php that works