Created
February 19, 2018 23:07
-
-
Save Kingo4luv/8f5b0d10f3d0c5c41bed21a13469c989 to your computer and use it in GitHub Desktop.
This file contains the form where we get data from users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Add Record Form</title> | |
</head> | |
<body> | |
<form action="insert.php" method="post"> | |
<p> | |
<label for="firstName">First Name:</label> | |
<input type="text" name="first_name" id="firstName"> | |
</p> | |
<p> | |
<label for="lastName">Last Name:</label> | |
<input type="text" name="last_name" id="lastName"> | |
</p> | |
<input type="submit" value="Submit" name="submit"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment