Is there a way to get the value of the name attribute in the form tag? I'm using PHP and don't see it in $_POST.
+1
A:
Is there a way to get the value of the name attribute in the form tag? I'm using PHP and don't see it in $_POST.
No, the form's name attribute is not sent through.
The easiest way around this would be adding a <input type="hidden">
containing the name.
Pekka
2010-10-23 09:36:22
A:
<form name="wut">
<input type="hidden" name="name" value="wut"/>
</form>
Robus
2010-10-23 09:36:43