Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
35formmethod_get.html
35formmethod_get.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Form method GET</title> </head> <body> <form action="35script.php" method="GET" enctype="application/x-www-form-urlencoded"> First Name: <br><input type="text" name="firstname"> <br><br> Last Name: <br><input type="text" name="lastname"> <br><br> <button type="submit">Send via GET</button> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code