On Wed, 16 Sep 2009 13:02:38 Nathan Kennedy wrote:
> Ok, no worries.
>
> What is happening on the line that is returning the error?
>
> If it's doing something like:
>
> $value = $_GET['retry'];
>
> Then you might want to try something like:
>
> $value = array_key_exists('retry',$_GET)?$_GET['retry']:null;
>
> Which will not return that notice.The question is WTH were they thinking? PHP 5.3.0 seems to break quite a few things, and certainly what's wrong with referring to variables as $_GET["variable"] ? That's what all the books and online guides teach. --~--~---------~--~----~------------~-------~--~----~ NZ PHP Users Group: http://groups.google.com/group/nzphpug To post, send email to [email protected] To unsubscribe, send email to [email protected] -~----------~----~----~----~------~----~------~--~---
