RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] Adding includes to files You could either include the files without assigning the contents to a variable - but that would display those right away: or you could read the contents of the file like: Richard Thursday, April 22, 2004, 5

RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
ECTED] Subject: Re: [PHP] Adding includes to files From: "Robert Sossomon" <[EMAIL PROTECTED]> > I need to add PHP calls to include a file to each page as it is > generated, the only thing is I can't get the includes to come through > correctly: > > >

Re: [PHP] Adding includes to files

2004-04-22 Thread Richard Harb
You could either include the files without assigning the contents to a variable - but that would display those right away: or you could read the contents of the file like: Richard Thursday, April 22, 2004, 5:12:21 PM, thus was written: > I need to add PHP calls to include a file to e

Re: [PHP] Adding includes to files

2004-04-22 Thread John W. Holmes
From: "Robert Sossomon" <[EMAIL PROTECTED]> > I need to add PHP calls to include a file to each page as it is > generated, the only thing is I can't get the includes to come through > correctly: > > >$display_block .= ""; >$display_block .= ""; > > > At the end of the generation I writ