if I type ocean/test.php?cat=test in the URL window this returns ocean/test.php? and $QUERY_STRING alone returns ocean/test.php.
neither of these will work since I need to explode the URL string into and array then assign the page depending on content through my templates. with this method the browser simply tries to server the page even if it doesn't exist. I need to place ocean/test in the URL string then
if($cat == 'test') {
serve test.php here
} else {
serve another page
}
Any other ideas. Since $REQUEST_URI is an apache variable can it be turned off or disabled?
thanks for the help.
//frank