Search found 5 matches

by Stargater59
November 7th, 2007, 3:17 am
Forum: GuMax 'How Do I' Questions
Topic: Inluding a header and footer
Replies: 7
Views: 7030

Re: Inluding a header and footer

Ok, I have resolved my issue. To clear up my last post, what I meant was, in GuMax.php I had <?php include('header.php');?> But when I viewed the page's source via 'View Page Source' in Firefox, what I saw was include('header.php'); Which didn't make any sense. So, I just went to the wiki, to see if...
by Stargater59
November 6th, 2007, 2:14 pm
Forum: GuMax 'How Do I' Questions
Topic: Inluding a header and footer
Replies: 7
Views: 7030

Re: Inluding a header and footer

Yes, that's how it is in the actual code. But when I view it in Firefox's 'View page Source' it comes out like that.
by Stargater59
November 6th, 2007, 2:30 am
Forum: GuMax 'How Do I' Questions
Topic: Inluding a header and footer
Replies: 7
Views: 7030

Re: Inluding a header and footer

Well, that's how I have it. However I noticed when I looked at the page's source, it looked like this: <body class="mediawiki ns-0 ltr page-Main_Page"> <!-- =================== gumax-page =================== --> <div id="gumax-page"> <!-- Header --> <div id="gumax-header&quo...
by Stargater59
November 6th, 2007, 1:19 am
Forum: GuMax 'How Do I' Questions
Topic: Inluding a header and footer
Replies: 7
Views: 7030

Re: Inluding a header and footer

Where would be the right place? I've tried putting the include in this spot: <body <?php if($this->data['body_ondblclick']) { ?>ondblclick="<?php $this->text('body_ondblclick') ?>"<?php } ?> <?php if($this->data['body_onload' ]) { ?>onload="<?php $this->text('body_onload') ?>"<?p...
by Stargater59
November 5th, 2007, 2:24 pm
Forum: GuMax 'How Do I' Questions
Topic: Inluding a header and footer
Replies: 7
Views: 7030

Inluding a header and footer

Hello, I'm wondering how I would go about adding an include to include a header and footer. In the header I would have my site's links, and banner, etc.. And the footer would contain a few links, and close all the DIV tags opened in the header. I do the same thing with SMF, and it works perfectly, h...