|
Posted by juglesh on 11/18/68 11:41
Jim Carlock wrote:
> IF, inside the address-bar, the link appears as:
> index.php?CITY=Raleigh+NC
> or
> index.php?City=Raleigh+NC
>
> $_GET['city'] displays behaves like a stubborn mule and refuses
> to get the get and returns empty ("").
>
> Is there a way to turn off the case sensitivity ?
foreach($_GET as $k => $v){
if (strtolower($k) == 'city'){
$myGetCity = $v;}
}
--
j
Navigation:
[Reply to this message]
|