"Shaun" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > How can I check if a form has been submitted, I have seen a demo that uses > the following: > > if(isset($HTTP_POST_VARS)) > > But I understand that $HTTP_POST_VARS is depricated... > > Thanks for your help
Check the $_POST superglobal: if (isset($_POST['name_of_your_button'])) { } Regards, Torsten -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php