View Single Post
  #2  
Old 10-26-2004, 06:53 AM
Dane
Unregistered

Posts: n/a

Hi,

Its just a simple little bit of code that you have to enter into your page. When you slice up your website, Insert the line into the Main Content part, the part where everything is going to be opened.

<? if(isset($page)) { include("$page.php"); } else { include("news.php"); }; ?>

The main page will be news.php and it will do as so...

index.php?page=news
index.php?page=members
index.php?page=results

etc

Hope this helps,

Dane
Reply With Quote