The submitted form is not POSTing Data (except for sending => Send)

I am trying to submit data using 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" || "" 
+4
source share
1 answer

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

+7
source

Source: https://habr.com/ru/post/1492498/


All Articles