Reply
PHP newbie
Old 02-22-2005, 03:27 AM PHP newbie
Raulică's Avatar
Ultra Talker

Posts: 251
Location: Constanta,Romania
Hello webmaster-talk users.
I would like to know how can i do a php page to poing to another page,here is an example : mydomain.com/test.php?page=pics , and if pics ( pics.php for example) can point to another page ? something like mydomain.com/test.php?page=pics&?page=pics2 .
How can i script it ?
Thanks in advance,
Raul
Raulică is offline
Reply With Quote
View Public Profile Visit Raulică's homepage!
 
When You Register, These Ads Go Away!
Old 02-22-2005, 04:24 AM
0beron's Avatar
Defies a Status

Posts: 1,832
Location: Somewhere else entirely
I fyou drop the second question mark, and use &s:
http://yourdomain.com/test.php?var1=...e2&var3=value3.....

Then in test.php you will be able to access these variables as $_GET['var1'] $_GET['var2'] and $_GET['var3']. That should allow you to include the right page or redirect to the right header.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Scribble Pad MOD for phpBB (aka MSN handwriting for forums)
0beron is offline
Reply With Quote
View Public Profile Visit 0beron's homepage!
 
Old 02-22-2005, 11:39 AM
Raulică's Avatar
Ultra Talker

Posts: 251
Location: Constanta,Romania
Thank you for your quick answer but i still don`t know how to do it,maybe if you paste a small and simple script..
Thanks
Raul
Raulică is offline
Reply With Quote
View Public Profile Visit Raulică's homepage!
 
Old 02-22-2005, 12:39 PM
Gaffer Sports's Avatar
Ultra Talker

Posts: 397
Name: Steve
Location: Scotland
$page = $_GET['page'];

// Determine which page we are Viewing

if ($page == "1") {
include "page1.php";
} elseif ($page == "2") {
include "page2.php";
} elseif ($page == "3") {
include "page3.php";
} else {
include "error.php";
}

That is an example and you can run as many if statements as you need.

Steve.
__________________
Media Help & Discussion
Gaffer Sports is offline
Reply With Quote
View Public Profile Visit Gaffer Sports's homepage!
 
Old 02-22-2005, 03:50 PM
Raulică's Avatar
Ultra Talker

Posts: 251
Location: Constanta,Romania
Thanks a lot mate
Raulică is offline
Reply With Quote
View Public Profile Visit Raulică's homepage!
 
Reply     « Reply to PHP newbie
 

Thread Tools

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12281 seconds with 12 queries