|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Member article (mailproblem...sometimes???)
hello
The member system ar now working, except for when I am trying to find myself a new PW (lost_pw.html and lostpw.php), later my registration are working fine reagarding the mail parts..... <? include 'db.php'; switch($_POST['recover']){ default: include 'lost_pw.html'; break; case "recover": recover_pw($_POST['email_address']); break; } function recover_pw($email_address){ if(!$email_address){ echo "You forgot to enter your Email address <strong>Knucklehead</strong><br />"; include 'lost_pw.html'; exit(); } // quick check to see if record exists $sql_check = mysql_query("SELECT * FROM users WHERE email_address='$email_address'"); $sql_check_num = mysql_num_rows($sql_check); if($sql_check_num == 0){ echo "No records found matching your email address<br />"; include 'lost_pw.html'; exit(); } // Everything looks ok, generate password, update it and send it! function makeRandomPassword() { $salt = "abchefghjkmnpqrstuvwxyz0123456789"; srand((double)microtime()*1000000); $i = 0; while ($i <= 7) { $num = rand() % 33; $tmp = substr($salt, $num, 1); $pass = $pass . $tmp; $i++; } return $pass; } $random_password = makeRandomPassword(); $db_password = md5($random_password); $sql = mysql_query("UPDATE users SET password='$db_password' WHERE email_address='$email_address'"); $subject = "Your Password at MyWebsite!"; $message = "Hi, we have reset your password. New Password: $random_password http://XXXXXX.se/member/login.php Thanks! The Webmaster This is an automated response, please do not reply!"; mail($email_address, $subject, $message, "From: MyDomain Webmaster<t99XX@student.bth.se>\nX-Mailer: PHP/" . phpversion()); echo "Your password has been sent! Please check your email!<br />"; include 'login_form.html'; } ?> help ?? Brother Last edited by mats bergman : October 1st, 2003 at 04:56 AM. |
|
#2
|
|||
|
|||
|
Mats,
What's the exact problem you're having? Do you receive any error messages at all?
__________________
____________________________________________ Developer Shed Weekly Writer | DevArticles Forum Moderator Build Your Own KlipFolio Klip With PHP FrankManno.com - Under Construction Design Interactive Group - Under Construction |
![]() |
| Viewing: Dev Articles Community Forums > Programming > General Programming Help > Member article (mailproblem...sometimes???) |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|