Posted by Fabian Vilers on 10/12/05 10:34
> if (!isset($_POST['foo'])) > { > $_POST['foo'] = 'my default'; > } You better should work with local variables, use this at top of the script: if (isset($_POST['foo'])) $foo = $_POST['foo']; else $foo = ""; and use $foo in the whole script
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming