Page 1 of 1

I am a noob getting an error probibly quick fix.

Posted: Sat Jan 23, 2010 9:45 pm
by jetpilot1999
Thanks for anyone that has taken the time to read this.

I am trying to get this simple little script to work on a phpbb forum page.

At the top of the phpbb page there is a <?php and at the bottom there is a close ?> with a lot of code in between. the page works fine.


I need to insert this into the top of the page to make my little script work <?php include("banners.php"); ?>

When I insert this onto the page the page goes blank. :banghead: What do I need to modify on this <?php include("banners.php"); ?> to make it work on the page.

Thanks for any help you can give.

Re: I am a noob getting an error probibly quick fix.

Posted: Sat Jan 23, 2010 10:08 pm
by AbraCadaver
Try just:

Code: Select all

include("banners.php");
After the <?php that is already in the file.

Re: I am a noob getting an error probibly quick fix.

Posted: Sat Jan 23, 2010 10:26 pm
by jetpilot1999
Thanks I think this may have worked. At least the page didn't go blank.
Thanks again for the help.