Created
May 22, 2016 19:56
-
-
Save juddlyon/783c6727aa7bf277183b60ae16107f6b to your computer and use it in GitHub Desktop.
GA Programming for Non-programmers POST Form
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> | |
<title>Form POST</title> | |
<link rel="stylesheet" href="my-rad-styles.css"> | |
</head> | |
<body> | |
<div class="main-content"> | |
<h1>Form POST Request Example</h1> | |
<form method="post" action="form-handler.php"> | |
<label for="first_name">First Name</label> | |
<input type="text" name="first_name" id="first_name"> | |
<label for="last_name">Last Name</label> | |
<input type="text" name="last_name" id="last_name"> | |
<label for="email">Email</label> | |
<input type="text" name="email" id="email"> | |
<label for="bio">Bio</label> | |
<textarea name="bio" id="bio" rows="4"></textarea> | |
<input type="submit" value="Send It!"> | |
</form> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment