well i have two forms in a single php file. on submit i just want to want find out which of the two was submitted. is it possible without doing some thing like <input type=hidden name=form_name value=form_name> in each form? does $_POST get some kind of name-of-form thingy???? Thanx for the help!!!
No, here is no any name of form transmitted. But different forms usually has different sets of controls. So you can test it
if(isset($_POST[_TEXT_FIELD_NAME_ONLY_IN_FIRST_FORM])) { echo "first form is submitted" }
hmmm...thanx for the help!