Click to See Complete Forum and Search --> : very stupid question


Pixel-Artist
01-13-2006, 10:35 PM
I know this sounds stupid but i forgot how check if form was submited

NogDog
01-13-2006, 10:37 PM
I usually look to see if one of the $_POST variables is set, e.g.:

if(isset($_POST['input_name']))
{
// process form input
}

Pixel-Artist
01-13-2006, 10:38 PM
Thank You!