Skip to content

Instantly share code, notes, and snippets.

@Tim-Machine
Created May 2, 2014 17:04
Show Gist options
  • Select an option

  • Save Tim-Machine/2126f03c3030b6cf9c4c to your computer and use it in GitHub Desktop.

Select an option

Save Tim-Machine/2126f03c3030b6cf9c4c to your computer and use it in GitHub Desktop.
<form action='submit.php' method="post">
<input type="text" name="email"/>
<textarea name="emailbody"></textarea>
<input type="submit" value="submit" />
</form>
<?php
$email = $_POST['email']; // this really should be cleaned
$emailBody = $_POST['emailbody']; // clean this too
function sendEmail($email,$emailbody)
{
// send email
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment