I used to be able to check if the form is submitted by doing this:
if ($_POST['value']) {
echo 'form posted';
}
But I noticed that it does not work onall servers that way. What is the bullet-profs method?
I also tried the following: if ($POST['value'] != '') and if (isset($POST['value']))
those seem to work...
Like i said, what's the best way of doing it????