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 |