Answers for "how to send post request in html"

1

html button send post request

<form method='POST' action='myFile.php'>
  <input name='myInput'>
  <button type='submit'>Submit</button> 
  <!--Sends input value to the page set as 'action' parameter. 
	For example a php file.-->
</form>
Posted by: Guest on May-23-2021

Code answers related to "how to send post request in html"

Browse Popular Code Answers by Language