이메일 인증 활성화 방법을 이용하시면 악성스팸 및 등록로봇의 접근을 효과적으로 차단할 수 있습니다. PHP에 등록한 후 이메일 확인 및 활성화 단계를 작성하는 것은 매우 간단합니다. 몇 분 안에 배울 수 있을 것입니다.
register.php와 verify.php라는 총 두 페이지가 필요합니다
1. 사용자 등록register.php
코드는 다음과 같습니다.
<html> <body> <form action="register.php" method="post" name="register"> 用户名:<input type="text" name="username" /> 密码:<input type="password" name="password" /> 电子邮件:<input type="text" name="email" /> <input type="submit" value="注册" /> </form> </body> </html>
2 사용자 데이터 양식을 생성합니다. 코드는 다음과 같습니다.
CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL auto_increment, `status` varchar(20) NOT NULL, `username` varchar(20) NOT NULL, `password` varchar(20) NOT NULL, `email` varchar(20) NOT NULL, `activationkey` varchar(100) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), UNIQUE KEY `email` (`email`), UNIQUE KEY `activationkey` (`activationkey`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;3. 인증 코드를 생성하고 사용자 등록 정보를 데이터 테이블에 저장합니다.
아직 활성화되지 않은 사용자를 나타내기 위해 '인증' 상태를 사용합니다.
코드는 다음과 같습니다.
$activationKey = mt_rand() . mt_rand() . mt_rand() . mt_rand() . mt_rand(); $username = mysql_real_escape_string($_POST[username]); $password = mysql_real_escape_string($_POST[password]); $email = mysql_real_escape_string($_POST[email]); $sql="INSERT INTO users (username, password, email, activationkey, status) VALUES ('$username', '$password', '$email', '$activationKey', 'verify')";4. 인증 코드를 보냅니다.
코드는 다음과 같습니다.
echo "An email has been sent to $_POST[email] with an activation key. Please check your mail to complete registration."; ##Send activation Email $to = $_POST[email]; $subject = " YOURWEBSITE.com Registration"; $message = "Welcome to our website!\r\rYou, or someone using your email address, has completed registration at YOURWEBSITE.com. You can complete registration by clicking the following link:\rhttp://www.YOURWEBSITE.com/verify.php?$activationKey\r\rIf this is an error, ignore this email and you will be removed from our mailing list.\r\rRegards,\ YOURWEBSITE.com Team"; $headers = 'From: noreply@ YOURWEBSITE.com' . "\r\n" . 'Reply-To: noreply@ YOURWEBSITE.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers);5. 인증 코드가 동일하면 사용자는 다음과 같습니다. 활성화되었습니다. 코드는 다음과 같습니다.
$queryString = $_SERVER['QUERY_STRING']; $query = "SELECT * FROM users"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)){ if ($queryString == $row["activationkey"]){ echo "Congratulations!" . $row["username"] . " is now the proud new owner of a YOURWEBSITE.com account."; $sql="UPDATE users SET activationkey = '', status='activated' WHERE (id = $row[id])"; if (!mysql_query($sql)) { die('Error: ' . mysql_error()); } // 到这里,用户已经完全激活了账号,你可以将页面跳转到登陆后的界面了 } } // end of while
위 내용은 등록 후 이메일을 사용하여 PHP 활성화 및 확인을 위한 샘플 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!