Quick Reference for PHP
From Free Knowledge Base- The DUCK Project: information for everyone
Redirect with PHP
See also: PHP Function Reference
<? header('Location: http://members.robotz.com/'); ?>
Read Query String
<? $qString = $_SERVER['QUERY_STRING']; $qString = preg_replace('#[^a-zA-Z0-9_-]#', , $qString); print "QUERYSTRING= $qString
"; if ($qString == "") $qString = "home"; if ($qString == "home") { ?>Viewing the HOME PAGE</a> <? } elseif ($qString == "other") { ?>Viewing some other page</a> <? }