HTML Form Submit
Submit HTML form using POST method to an external action linkezeasorekene
php
2 years ago
1.2 kB
13
Indexable
<html> <head> <title>Submit Form</title> </head> <body> <form action="classsubmit.php" method="post"> <input type="text" required name="firstName" placeholder="Enter your first name"> <br><br> <input type="text" required name="lastName" placeholder="Enter your last name"> <br><br> <input type="text" required name="email" placeholder="Enter your email"> <br><br> <input type="text" required name="phone" placeholder="Enter your phone"> <br><br> <input type="text" required name="address" placeholder="Enter your address"> <br><br> <input type="text" required name="nationality" placeholder="Enter your nationality"> <br><br> <input type="text" required name="middlename" placeholder="Enter your middlename"> <br><br> <input type="text" required name="age" placeholder="Enter your age"> <br><br> <input type="hidden" name="agdu" value="46577fdghgd"> <input type="submit" name="submit" value="Submit"> </form> </body> </html>
Editor is loading...