HTML form post
From w3cyberlearnings
Contents |
HTML - form post
Form POST HTTP REQUEST does not pass information/form data through a URL like the GET HTTP REQUEST.
HTML - Syntax Form POST HTTP REQUEST
<form action="path/program" method="post"> ..... </form>
Note
- Form Post HTTP Request considers more secure than the GET HTTP REQUEST.
- When a form uses POST HTTP REQUEST, it informs the server side program to use POST HTTP REQUEST to process data.
Example 1
<html> <head> <title>Test Get</title> </head> <body> <form action="test1.php" method="post"> Content place here </form> </body> </html>
Related Link
- Form Action
- Form POST
- Form GET
- Form Input Text