Quote:
Originally Posted by Graham M
PHP Code:
if ($_POST['action'] == 'save')
might throw an error on some servers depending on how they're configured
PHP Code:
if ((isset($_POST['action'])) && ($_POST['action'] == 'save'))
may correct that, I haven't tested it so my syntax might be wrong, I'm a bit out of practice 
|
Aye maybe, should only throw a warning or notice though and the script would work anyway.
You're most welcome Jedi.