Skip to content

Instantly share code, notes, and snippets.

@juddlyon
Created May 22, 2016 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juddlyon/783c6727aa7bf277183b60ae16107f6b to your computer and use it in GitHub Desktop.
Save juddlyon/783c6727aa7bf277183b60ae16107f6b to your computer and use it in GitHub Desktop.
GA Programming for Non-programmers POST Form
<!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