[PHP] Re: turn off a warning with $GET_['var'];

2002-09-02 Thread Erwin
Peter Mr. Eps Thoenen wrote: > Hello, > > trying to figure a way to turn off the following warning. @ > doesn't seem to work neither does switch (isset($_GET['status'])){ > > Notice: Undefined index: status in E:\php\tt\index.php on line 6 > > switch ($_GET['status']){ try array_key_exists

[PHP] Re: turn off a warning with $GET_['var'];

2002-09-01 Thread CHAILLAN Nicolas
What about switch(@isset($_GET['status'])) ? or @switch(isset($_GET['status'])) -- Merci de nous avoir choisi. - Thanks you for your choice. Nicos - CHAILLAN Nicolas [EMAIL PROTECTED] [EMAIL PROTECTED] www.GroupAKT.com - Hébergement Group. www.WorldAKT.com - Hébergement de sites Internet "Peter Mr