PHP忘记密码脚本[关闭]

Posted

技术标签:

【中文标题】PHP忘记密码脚本[关闭]【英文标题】:PHP Forgot Password Script [closed] 【发布时间】:2014-09-02 19:26:14 【问题描述】:

所以,我创建了一个脚本,一个用于登录,一个用于重置用户密码。

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Forgot your password?</title>
</head>
<body>
<?php 
error_reporting(0);
$email=$_POST['email'];
if($_POST['submit']=='Send')

mysql_connect('localhost','username','password') or die(mysql_error);
mysql_select_db('softlrdl_testlogon');
$query="select * from users where email='$email'";
$result=mysql_query($query) or die(error);
if(mysql_num_rows($result))

echo "User exist";

else

echo "No user exist with this email id";


?>
<?php
mail(to,subject,message,headers,parameters)
if(mysql_num_rows($result))

$code=rand(100,999);
$message="Your activation link is: http://forgot.site.com/forgot.php?email=$email&code=$code
mail($email, "Password Reset Link", $message);
echo "Email sent";

else

echo "No user exist with this email id";

?>
</body>
</html>

我得到的错误是:

Parse error: syntax error, unexpected T_IF in /home/softlrdl/public_html/forgot/forgot.php on line 28

我不知道是什么原因造成的......

提前感谢您的帮助

【问题讨论】:

mail() 函数后缺少分号 你应该将你的代码复制到dreamviewer中,它会以红色显示语法错误。它将帮助您找到错误 【参考方案1】:

您有一些语法错误:

    您忘记了mail(to,subject,message,headers,parameters) 的分号 你忘记了结尾";$message="Your activation link is: http://forgot.site.com/forgot.php?email=$email&amp;code=$code 您从未真正设置过mail(to,subject,message,headers,parameters) 这些字段中的任何一个

【讨论】:

【参考方案2】:

您在这里忘记了分号,但也没有为它们分配任何变量。您最好需要为它们分配变量。但我想你忘记了,如果没有,你需要像下面这样编辑它们:

$to = "to@mail.com";
$subject = "yoursubject";
$message = "yourmessage";
$headers = "yourheaders";
$parameters = "yourparameters";

mail($to,$subject,$message,$headers,$parameters);

这里你又忘记了双引号和分号。

$message= "Your activation link is: http://forgot.site.com/forgot.php?email=$email&code=$code";

【讨论】:

【参考方案3】:

缺少分号;邮件后(收件人、主题、邮件、标题、参数)

【讨论】:

另外,主题,消息,标题,参数需要每个都有$符号。此外,我还没有看到你为这些变量赋值

以上是关于PHP忘记密码脚本[关闭]的主要内容,如果未能解决你的问题,请参考以下文章

MongoDB忘记密码怎么恢复

忘记了open***管理员的密码[关闭]

PHP忘记密码方法[重复]

PHP发送忘记密码的电子邮件

php中忘记密码页面

怎么破解应用锁密码呢,忘记密码