Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 4 users online
 o Most users online: 67
 o Home
  o PHP
   o Redirection/Links
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o designplace
 o Wedding Vendor Directory
 o OxyScripts
 o Free Wedding Websites
 o Open Source Design
 o devnet

Query Strings (Rated 3)

Description:

This shows you how to implement in PHP when you see urls like:
http://www.blah.com/index.php?page=news

Code starts here


<?PHP

switch( $_GET['page'] ) {
case
'news' :
include
'news.php';
break;
case
'portfolio' :
include
'portfolio.php';
break;
default:
include
'news.php';
break;
}

?>

Last Edited: 1046131748


Submitted by Devscripts on 25-02-2003 0:09


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net