PHP member Retrieve password function Realization Example Introduction, PHP Retrieve password _php tutorial

Source: Internet
Author: User
Tags ereg preg jquery library

PHP member Retrieve Password function Implementation Example Introduction, PHP retrieve password


Setup Ideas

1, user registration needs to provide an e-mail mailbox, the purpose is to use the mailbox to retrieve the password.

2, when the user forgot the password or user name, click on the login page "Retrieve password" hyperlink, open the form, and enter the registration of e-mail address, submit.

3, the system through the mailbox, from the database to find the user information, and update the user's password for a temporary password (such as: 12345678).

4, the system with the use of JMail function to send the user's information to the user's mailbox (the content includes: User name, temporary password, remind users to modify the temporary password prompt).

5, the user can log in with temporary password.


Html

We place a password on the page to ask the user to enter the registration of the mailbox, and then submit the foreground JS to handle the interaction.

Code to copy code as follows

Enter your registered email address to retrieve your password:




Jquery

When the user finishes entering the mailbox and clicks Submit, jquery verifies that the mailbox is formatted correctly. If correct, by sending an AJAX request to the background sendmail.php, sendmail.php is responsible for verifying that the mailbox exists and sending the message, and returning the corresponding processing results to the foreground page, see the jquery code:

Code to copy code as follows
$ (function () {
$ ("#sub_btn"). Click (function () {
var email = $ ("#email"). Val ();
var preg =/^w+ ([-+.] w+) *@w+ ([-.] w+) *.w+ ([-.] w+) */; Match Email
if (email== ' | | |!preg.test (email)) {
$ ("#chkmsg"). HTML ("Please fill in the correct mailbox!") ");
}else{
$ ("#sub_btn"). attr ("Disabled", "disabled"). Val (' Submit: '). CSS ("cursor", "Default");
$.post ("sendmail.php", {mail:email},function (msg) {
if (msg== "Noreg") {
$ ("#chkmsg"). HTML ("The mailbox is not registered! ");
$ ("#sub_btn"). Removeattr ("Disabled"). Val (' Submit '). CSS ("cursor", "pointer");
}else{
$ (". Demo"). HTML ("

"+msg+"

");
}
});
}
});
})

The jquery code used above is convenient and concise to complete the front-end interaction, if you have a certain jquery basis, the above code at a glance, not much explanation.

Of course, do not forget to load the jquery library files in the page, some students often ask me to download from the Www.111cn.net demo how to use, that 80% is jquery or other file loading path is wrong cause the necessary files are not loaded.
Php

sendmail.php need to verify that the e-mail exists in the System User table, if there is, read the user information, the user ID, user name and password awakened MD5 encryption to generate a special string as the code to retrieve the password, and then construct the URL. At the same time, in order to control the timeliness of the URL link, will record the user to submit the operation time to retrieve the password action, the last call to Send mail class mail to the user mailbox, send the message Class smtp.class.php has been packaged, please download.

Code to copy code as follows
Include_once ("connect.php");//Connect database

$email = Stripslashes (Trim ($_post[' mail '));

$sql = "Select Id,username,password from ' t_user ' where ' email ' = ' $email '";
$query = mysql_query ($sql);
$num = mysql_num_rows ($query);
if ($num ==0) {//The mailbox has not been registered!
Echo ' Noreg ';
Exit
}else{
$row = Mysql_fetch_array ($query);
$getpasstime = time ();
$uid = $row [' id '];
$token = MD5 ($uid. $row [' username ']. $row [' password ']);//Combination Verification code
$url = "/demo/resetpass/reset.php?email=". $email. "
&token= ". $token;//Construct URL
$time = Date (' y-m-d h:i ');
$result = SendMail ($time, $email, $url);
if ($result ==1) {//mail sent successfully
$msg = ' The system has sent a message to your mailbox
Please login to your email address to reset your password in time! ';
Update Data Send time
mysql_query ("Update ' T_user ' set ' getpasstime ' = ' $getpasstime ' where id= ' $uid '");
}else{
$msg = $result;
}
Echo $msg;
}

Send mail
function SendMail ($time, $email, $url) {
Include_once ("smtp.class.php");
$smtpserver = ""; SMTP server, such as smtp.163.com
$smtpserverport = 25; SMTP Server port
$smtpusermail = ""; User mailboxes for the SMTP server
$smtpuser = ""; User account for the SMTP server
$smtppass = ""; User password for SMTP server
$SMTP = new SMTP ($smtpserver, $smtpserverport, True, $smtpuser, $smtppass);
A true in this case is that authentication is used, otherwise it is not used.
$emailtype = "HTML"; Letter type, text: text; Web page: HTML
$smtpemailto = $email;
$smtpemailfrom = $smtpusermail;
$emailsubject = "www.111cn.net-Recover password";
$emailbody = "Dear". $email. " :
You are in the ". $time." A request to retrieve the password was submitted. Please click on the link below to reset your password
(the button is valid within 24 hours).
". $url.";
$rs = $smtp->sendmail ($smtpemailto, $smtpemailfrom, $emailsubject, $emailbody, $emailtype);

return $rs;
}

OK, this time your mailbox will receive a password to retrieve the mail from Helloweba, the message content has a URL link, click the link to www.111cn.net reset.php to verify the mailbox.

Code to copy code as follows
Include_once ("connect.php");//Connect database

$token = Stripslashes (Trim ($_get[' token '));
$email = Stripslashes (Trim ($_get[' email '));
$sql = "SELECT * from ' T_user ' where email= ' $email '";

$query = mysql_query ($sql);
$row = Mysql_fetch_array ($query);
if ($row) {
$MT = MD5 ($row [' id ']. $row [' username ']. $row [' password ']);
if ($mt = = $token) {
if (Time ()-$row [' Getpasstime ']>24*60*60) {
$msg = ' The link has expired! ';
}else{
Reset Password ...
$msg = ' Reset your password, display the
Here is just a demo, skip over. ';
}
}else{
$msg = ' Invalid link ';
}
}else{
$msg = ' wrong link! ';
}
Echo $msg;

reset.php first accept the parameter email and token, and then according to the email Query data table T_user whether there is an email, if there is to obtain the user's information, The token value is built just like the token combination in sendmail.php, and then compared to the token passed by the URL, if the current time differs from sending the message for more than 24 hours, the link is expired! ", instead, the link is valid, and turned to the Reset Password page, and finally the user set a new password.

Summary: Through the registration of email verification and this article to retrieve the password, we know the application of e-mail in the development of the website and its importance, of course, now also popular SMS verification application, the need for the relevant SMS interface docking on it.

Finally, attach the data sheet T_user structure:

Code to copy code as follows
CREATE TABLE ' T_user ' (
' id ' int (one) not NULL auto_increment,
' username ' varchar (+) not NULL,
' Password ' varchar (+) not NULL,
' Email ' varchar (not NULL),
' Getpasstime ' int (ten) is not NULL,
PRIMARY KEY (' id ')
) Engine=myisam DEFAULT Charset=utf8;

smtp.class.php class file

Code to copy code as follows

Class smtp{

/* Public Variables */

var $smtp _port;

var $time _out;

var $host _name;

var $log _file;

var $relay _host;

var $debug;

var $auth;

var $user;

var $pass;

/* Private Variables */
var $sock;

/* Constractor */

function smtp ($relay _host = "", $smtp _port = +, $auth = False, $user, $pass) {
$this->debug = false;

$this->smtp_port = $smtp _port;

$this->relay_host = $relay _host;

$this->time_out = 30; is used in Fsockopen ()

$this->auth = $auth; Auth

$this->user = $user;

$this->pass = $pass;

$this->host_name = "localhost"; is used in HELO command
$this->log_file = "";

$this->sock = false;
}

/* Main Function */

function SendMail ($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $BCC = "", $additional _headers = "") {
$mail _from = $this->get_address ($this->strip_comment ($from));

$body = Ereg_replace ("(^| ( RN)) (.) "," 1.3 ", $body);

$header. = "Mime-version:1.0rn";

if ($mailtype = = "HTML") {
$header. = "CONTENT-TYPE:TEXT/HTMLRN";
}

$header. = "To:". $to. "RN";

if ($cc! = "") {
$header. = "Cc:". $CC. "RN";
}

$header. = "From (www.111cn.net): $from <". $from. ">rn";

$header. = "Subject:". $subject. "RN";

$header. = $additional _headers;

$header. = "Date:". Date ("R"). "RN";

$header. = "X-mailer:by Redhat (php/". Phpversion (). ") RN";

List ($msec, $sec) = Explode ("", Microtime ());

$header. = "Message-id: <". Date ("Ymdhis", $sec). "." . ($MSEC * 1000000). "." . $mail _from. ">rn";

$TO = Explode (",", $this->strip_comment ($to));

if ($cc! = "") {
$TO = Array_merge ($TO, Explode (",", $this->strip_comment ($CC)));
}

if ($bcc! = "") {
$TO = Array_merge ($TO, Explode (",", $this->strip_comment ($BCC)));
}

$sent = true;

foreach ($TO as $rcpt _to) {
$RCPT _to = $this->get_address ($rcpt _to);

if (! $this->smtp_sockopen ($rcpt _to)) {
$this->log_write ("Error:cannot send email to". $RCPT _to. "N");

$sent = false;

Continue
}

if ($this->smtp_send ($this->host_name, $mail _from, $rcpt _to, $header, $body)) {
$this->log_write ("e-mail has been sent to <". $rcpt _to. ">n");
} else {
$this->log_write ("Error:cannot Send email to <". $rcpt _to. ">n");

$sent = false;
}

Fclose ($this->sock);

$this->log_write ("Disconnected from remote Hostn");
}

return $sent;
}

/* Private Functions */

function Smtp_send ($helo, $from, $to, $header, $body = "") {
if (! $this->smtp_putcmd ("HELO", $helo)) {
return $this->smtp_error ("Sending HELO command");
}
Auth
if ($this->auth) {
if (! $this->smtp_putcmd ("AUTH LOGIN", Base64_encode ($this->user))) {
return $this->smtp_error ("Sending HELO command");
}

if (! $this->smtp_putcmd ("", Base64_encode ($this->pass)) {
return $this->smtp_error ("Sending HELO command");
}
}

if (! $this->smtp_putcmd ("MAIL", "from:<". $from. ">")) {
return $this->smtp_error ("Sending MAIL from command");
}

if (! $this->smtp_putcmd ("RCPT", "to:<". $to. ">")) {
return $this->smtp_error ("Sending RCPT to command");
}

if (! $this->smtp_putcmd ("DATA")) {
return $this->smtp_error ("Sending DATA command");
}

if (! $this->smtp_message ($header, $body)) {
return $this->smtp_error ("Sending message");
}

if (! $this->smtp_eom ()) {
return $this->smtp_error ("Sending . [EOM] ");
}

if (! $this->smtp_putcmd ("QUIT")) {
return $this->smtp_error ("Sending QUIT command");
}

return true;
}

function Smtp_sockopen ($address) {
if ($this->relay_host = = "") {
return $this->smtp_sockopen_mx ($address);
} else {
return $this->smtp_sockopen_relay ();
}
}

function Smtp_sockopen_relay () {
$this->log_write ("Trying to". $this->relay_host. ":" . $this->smtp_port. "N");

$this->sock = @ fsockopen ($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);

if (! ( $this->sock && $this->SMTP_OK ())) {
$this->log_write ("Error:cannot connenct to relay host". $this->relay_host. "N");

$this->log_write ("Error:".) $errstr. " (" . $errno. ") n");

return false;
}

$this->log_write ("Connected to relay host". $this->relay_host. "N");

return true;
;
}

function Smtp_sockopen_mx ($address) {
$domain = Ereg_replace ("^.+@ ([^@]+) $", "1", $address);

if (!@ getmxrr ($domain, $MXHOSTS)) {
$this->log_write ("error:cannot resolve MX" ". $domain. "N");

return false;
}

foreach ($MXHOSTS as $host) {
$this->log_write ("Trying to". $host. ":" . $this->smtp_port. "N");

$this->sock = @ fsockopen ($host, $this->smtp_port, $errno, $errstr, $this->time_out);

if (! ( $this->sock && $this->SMTP_OK ())) {
$this->log_write ("Warning:cannot Connect to MX host". $host. "N");

$this->log_write ("Error:".) $errstr. " (" . $errno. ") n");

Continue
}

$this->log_write ("Connected to MX host". $host. "N");

return true;
}

$this->log_write ("Error:cannot connect to any MX hosts (". Implode (",", $MXHOSTS). ") n ");

return false;
}

function Smtp_message ($header, $body) {
Fputs ($this->sock, $header. "RN". $body);

$this->smtp_debug (">". Str_replace ("RN", "n"). ">", $header. " N> ". $body. "n>"));

return true;
}

function Smtp_eom () {
Fputs ($this->sock, "Rn.rn");

$this->smtp_debug (". [Eom]n ");

return $this->SMTP_OK ();
}

function Smtp_ok () {
$response = Str_replace ("rn", "", Fgets ($this->sock, 512));

$this->smtp_debug ($response. "N");

if (!ereg ("^[23]", $response)) {
Fputs ($this->sock, "quitrn");

Fgets ($this->sock, 512);

$this->log_write ("Error:remote host returned" ". $response. "N");

return false;
}

return true;
}

function Smtp_putcmd ($cmd, $arg = "") {
if ($arg! = "") {
if ($cmd = = "")
$cmd = $arg;

Else
$cmd = $cmd. " " . $arg;
}

Fputs ($this->sock, $cmd. "RN");

$this->smtp_debug (">". $cmd. "N");

return $this->SMTP_OK ();
}

function Smtp_error ($string) {
$this->log_write ("Error:error occurred while". $string. ". N");

return false;
}

function Log_write ($message) {
$this->smtp_debug ($message);

if ($this->log_file = = "") {
return true;
}

$message = Date ("M D h:i:s"). Get_current_user (). "[" . Getmypid (). "]: " . $message;

if (!@ file_exists ($this->log_file) | |! ( $fp = @ fopen ($this->log_file, "a")) {
$this->smtp_debug ("Warning:cannot open log File". $this->log_file. "N");

return false;
;
}

Flock ($FP, LOCK_EX);

Fputs ($fp, $message);

Fclose ($FP);

return true;
}

function Strip_comment ($address) {
$comment = "([^ ()]*)";

while (Ereg ($comment, $address)) {
$address = ereg_replace ($comment, "", $address);
}

return $address;
}

function Get_address ($address) {
$address = Ereg_replace ("([trn]) +", "", $address);

$address = Ereg_replace ("^.*< (. +) >.*$", "1", $address);

return $address;
}

function Smtp_debug ($message) {
if ($this->debug) {
Echo $message. "
;";
}
}
}
?>

The last side has a database connection class, here does not introduce the big everyone can find the relevant database connection MySQL class OH
From:http://www.111cn.net/phper/php/54606.htm

http://www.bkjia.com/PHPjc/917485.html www.bkjia.com true http://www.bkjia.com/PHPjc/917485.html techarticle PHP member Retrieve password function Implementation Example Introduction, PHP back password set 1, user registration needs to provide an e-mail mailbox, the purpose is to use the mailbox to retrieve the password. 2. When the user ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.