Hello Ben,

Monday, March 15, 2004, 11:43:24 AM, you wrote:

BJ> For example if I refer to $_GET['this'] when there is no 'this' querystring
BJ> key then i get the error.

BJ> I've tried using @$_GET['this'] but it makes no difference.

BJ> Is this normal?

Yes because @ suppresses the errors on function calls, not variables
(which is all $_GET['this'] is).

It's like saying @$this - i.e. as you can see, it doesn't make sense.

-- 
Best regards,
 Richard Davey
 http://www.phpcommunity.org/wiki/296.html

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to