slyfox
11-18-2003, 04:32 PM
Hi peoples
<?php
if ($_SERVER["QUERY_STRING"] = "")
{
$getI = "";
} else {
$getI = $_SERVER["QUERY_STRING"];
}
?>
if i send no query string it is fine... but if i send a query string it does not set $getI with the "supposed to be found" value
any ideas
<?php
if ($_SERVER["QUERY_STRING"] = "")
{
$getI = "";
} else {
$getI = $_SERVER["QUERY_STRING"];
}
?>
if i send no query string it is fine... but if i send a query string it does not set $getI with the "supposed to be found" value
any ideas