当我的 PHP 脚本创建如下 URL 时: ..../recover.php?success 然后创建一个错误: Internal Server Error 服务器遇到内部错误或配置错误,无法完成您的请求。请通过 webmaster@testlogin.muhammadmasud.info 联系服务器管理员,告知他们此错误发生的时间,以及您在此错误之前执行的操作。
服务器错误日志中可能提供有关此错误的更多信息。
此外,在尝试使用 ErrorDocument 处理请求时遇到 500 Internal Server Error 错误。
我的脚本`
?>
<p>Thanks, we have emailed you.</p>
<?php
}else{
$mode_allowd = array('username', 'password');
if(isset($_GET['mode']) === true && in_array($_GET['mode'], $mode_allowd) === true){
if(isset($_POST['email']) === true && empty($_POST['email']) === false){
if(email_exists($_POST['email']) === true){
Recover($_GET['mode'], $_POST['email']);
header('location: recover.php?success');
exit();
}else{
echo '<p style="color:red">Oops, we could not find that email address!</p>';
}
}
?>
<form action="" method="post">
<table style="boder:none">
<tr>
<td>Please enter your email address:</td>
</tr>
<tr>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td><input type="submit" value="Recover"></td>
</tr>
</table>
</form>
<?php
}else{
header('location: index.php');
exit();
}`