for example, if I have a form
<form action="" method="post">
<div name="superman" value="clark kent"></div>
<object name="batman" value="john smith"></object>
</form>
Will I get the $_POST values?
update:
w3c says object above sends data.
I’m currently unsure about div.
No. Only controls are transmitted in forms.
Background in W3C: Forms in HTML documents, especially the chapter on successful controls.