Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Submitted Form not POSTing Data (except for submit=>Submit )

I have been trying to submit data with a form to some php code. The code gets $_POST['sumbit'] == 'Submit' but nothing else.

Example:

<form id="ucp" method="post" action="./ucp.php?i=nhl&amp;mode=nhl">
<fieldset class="fields2">
<dl>
    <dt><label for="teamname">Team Name:</label></dt>
    <dd><input type="text" maxlength="25" id="teamname"></dd>
</dl>
<fieldset class="submit-buttons">
  <input type="reset" value="Reset" name="reset" class="button2" />&nbsp; 
  <input type="submit" name="submit" value="Submit" class="button1"/>
</fieldset>
</form>

PHP:

http_build_query($_POST) == "submit=Submit" || "" 
like image 513
Jonathon Avatar asked Feb 16 '23 20:02

Jonathon


1 Answers

Forms need inputs with NAMEs, IDs will not work. Any input field without a name attribute does not send data.

like image 88
Jonathon Avatar answered Feb 24 '23 19:02

Jonathon