PDA

View Full Version : Footer Problems


jfs
Mon 19th Jun '00, 1:08pm
Ok,

I figured out how to get the header formatted how I wanted with some PHP code. The documentation was a little "loose" in this reguard.

Problem...

When I select for the footer to be parsed as PHP code, anything I put in there, it shows just below the header. Below this the forums start.

any ideas?

-jfs

John
Tue 20th Jun '00, 3:48am
When including things in the footer, you should not use echo to print them straight away, but instead, set the $footer variable to contain the text.

Instead of:


echo "hello";


You would use:


$footer="hello";


John