I have to figure out someone's codes... When the user click submit, it will go to another page. But it seems like there's no $_post, $_get, or $_REQUEST in the file. I also tried to delete name and value in the input tag, it still works. It also still works if I delete method, name and id in the form tag...
It doesn't work if I delete the form tag.
<form method="post" name="my_form" id="50">form content
<input type="submit" name="val1" value="value"></input>
</form>
After delete method, name, and id it still works:
<form>form content
<input type="submit"></input>
</form>
So my question is, is there other way you know that can be used in submitting a form? Thank you for your time.