[PHP-DB] RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
OK, so I figured out where it was barfing.  I looked deeper into the log
files as well as the generated pages, and found that somewhere the path
to the include files had become mangled, and the reason the files
weren't showing correctly in the HTML pages in the browser was because
it couldn't find the right files.  It's on track and working all neat
and tidy now.

Thanks for the help guys! I still feel like a doofus though...  

Robert

-Original Message-
From: Richard Harb [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 22, 2004 11:46 AM
To: Robert Sossomon
Cc: [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:12:21 PM, thus was written:
> 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 .= "";  End Code>

> At the end of the generation I write $display_block to a file as 
> $display_block holds all the data it accumulates through the run. How 
> do I rewrite the inlclude to work, or do I need to find another way to

> make the includes?  The includes are all template files that I used on

> the site to keep everything consistent.

> Thanks,
> Robert

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
Output buffering isn't going to help, the files, when completed need to
look like:  




Categories of Items



Html content





If all I was trying to do was pull in the files I could do that without
a problem, but what I need to do is generate the whole page with the
information.

I attached the php file that does the site generation and maybe it will
shed some light on what I am trying to do as well.

TIA!!

Robert

-Original Message-
From: John W. Holmes [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 22, 2004 11:33 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
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:
> 
> 
>$display_block .= "";
>$display_block .= "";  End Code>
> 
> At the end of the generation I write $display_block to a file as

You can use output buffering:

ob_start();
include("nav/top_nav.html"); 
include("nav/side_nav.html"); 
$display_block = ob_get_contents();
ob_end_clean();

---John Holmes...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] 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 write $display_block to a file as

You can use output buffering:

ob_start();
include("nav/top_nav.html"); 
include("nav/side_nav.html"); 
$display_block = ob_get_contents();
ob_end_clean();

---John Holmes...

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php