Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-16-2004, 11:40 AM   PM User | #1
aspdude2004
New Coder

 
Join Date: Apr 2004
Posts: 47
Thanks: 0
Thanked 0 Times in 0 Posts
aspdude2004 is an unknown quantity at this point
Question sorry cant think of a title :S

Ok i have a problem with php , well no so much a problem but something that needs fixing

I want to have a index.php page, from this page i want to link to other pages usign one other file called module.php....

from index.php i want to link to other pages with something like

module.php?site=index

from the module file i can link the REQUEST or the GET variable which ever one i dont know, to one other paticular file depending on what the site variable is set as in the link !!

Am i making sense??

here comes my problem, say i wanted the module.php file how would i get the nav bar at the top to coem up every time, can i make it work like frames withotu frames?? Do you understand me?
__________________
...not bad for a thirteen year old

Last edited by aspdude2004; 05-16-2004 at 11:42 AM.. Reason: Dont ask !
aspdude2004 is offline   Reply With Quote
Old 05-16-2004, 04:30 PM   PM User | #2
Serex
Regular Coder

 
Join Date: Mar 2004
Location: Australia
Posts: 217
Thanks: 0
Thanked 1 Time in 1 Post
Serex is an unknown quantity at this point
PHP Code:
<?
 
if(isset($site)) 
 {
     include(
$site '.php'); 
 } 
 else 
 {
     include(
'main.php');
 }
?>
This is a basic example of what u may be after. include this were u want the page to be shown and main.php is the default page i.e news. You can link to as you have shown above ... index.php?site=lah. can alsop echo $site to return a value

im sure their are other ways of doing it and would like to hear of some.

Last edited by Serex; 05-16-2004 at 04:32 PM..
Serex is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:15 PM.


Advertisement
Log in to turn off these ads.