I'm new to PHP, and would like to know if there is a code snippet for emailing a lost password to a subcriber?

First, we must assume that you are currently storing the username/login, password and the email address in a mySQL table. Once we know the username/login, we simply use that to locate the password and utilize the mail() function to send it. 

Your snippet would be something like this :

  $result = mysql_query ("SELECT password,email FROM yourtable WHERE username = '$username'");
  if ($myrow = mysql_fetch_array($result))
  {
    $mailaddress = $myrow["email"];
    $subject = "Important Message"; // don't say password in subject
    $message = "Your password is: " . $myrow["password"] ;
    $header = "Ancillary message or other stuff";
    mail($mailaddress,$subject,$message,$header);
  }

Hope this is helpful.

  • 109 Пользователи нашли это полезным
Помог ли вам данный ответ?

Связанные статьи

I'm new to PHP, where should I start?

You can refer the following link to understand about PHP code,The official PHP web site as a lot...

I have starting to know a bit of PHP, now how do I...?

---------------------------Introductory PHP Tutorials :---------------------------(in no...

What's the best way to start writing a PHP program?

Firstly figure out, on paper, exactly what you want to do. Otherwise, you'll just be coding...

How can I call a command line executable from within PHP?

Check out the "Program Execution functions" here :...