[thelist] PHP & post form problem

Chris axe at suburbia.com.au
Fri Jun 7 10:54:01 CDT 2002


<snip>
input type=submit


and then check it with

if(isset($_POST['submit']))
{
...
}
</snip>

=================

Instead of checking using your method to check if the form has been
submitted, you could try the following:

if ($REQUEST_METHOD=='POST') {
...
}



Regards,
Chris




More information about the thelist mailing list