Skip to content

Instantly share code, notes, and snippets.

@Kingo4luv
Created February 19, 2018 23:07
Show Gist options
  • Save Kingo4luv/8f5b0d10f3d0c5c41bed21a13469c989 to your computer and use it in GitHub Desktop.
Save Kingo4luv/8f5b0d10f3d0c5c41bed21a13469c989 to your computer and use it in GitHub Desktop.
This file contains the form where we get data from users
<!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