I am trying to create some code to check whether a form has been submitted.
The following code seems to print evertime, whether a form has been
submitted or not:

if (isset($_POST)) {
  echo '(isset($_POST))';
 }

why not just

if( $_POST) {
        echo $_POST;
}

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



Reply via email to