Re: [PHP] Re: Passing variables with include()

2002-01-14 Thread Stefan Rusterholz
> Scott Houseman wrote: > > > Hi Al. > > > > While we are on topic, what are the key differences between include() & > > require() ? > > > "Unlike include(), require() will always read in the target file, > even if the line it's on never executes. If you want to conditionally > include a file, us

Re: [PHP] Re: Passing variables with include()

2002-01-14 Thread Martin Wickman
Scott Houseman wrote: > Hi Al. > > While we are on topic, what are the key differences between include() & > require() ? "Unlike include(), require() will always read in the target file, even if the line it's on never executes. If you want to conditionally include a file, use include(). The

Re: [PHP] Re: Passing variables with include()

2002-01-14 Thread Stefan Rusterholz
ssage - From: "Scott Houseman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, January 13, 2002 2:54 PM Subject: Re: [PHP] Re: Passing variables with include() > Hi Al. > > While we are on topic, what are the key differences between include() & > require(

Re: [PHP] Re: Passing variables with include()

2002-01-14 Thread Scott Houseman
Hi Al. While we are on topic, what are the key differences between include() & require() ? Cheers Scott - Original Message - From: "Martin Wickman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 14, 2002 3:40 PM Subject: [PHP] Re: Passing variables with include() >

Re: [PHP] Re: Passing variables with include()

2002-01-14 Thread Stefan Rusterholz
Sure you can. Right out from the manual: If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), you can specify the file to be include()ed using an URL instead of a local pathname. See Remote files and fopen() for more information. best regards Stefan Rusterhol