我创建了一个 HTML 登录表单,用于检查电子邮件和密码身份验证,然后重定向到用户帐户。
我的PHP代码如下:
<?php
require('connect.php');//for connection to the database.
$email = $_POST['email'];
$password = $_POST['password'];
$query = "SELECT * FROM `account` WHERE pemail='$email' and password='$password'";
$result1 = mysql_query($query) or die(mysql_error());
$usercount = mysql_num_rows($result1);
if ($usercount == 1){
include 'myaccount.php';
}
else{
echo "Invalid Details.";
echo "<a href='login.php'>Back to Login</a>";
}
在这里,我试图include
重定向到用户帐户......它工作正常。
虽然我的导师说我使用它是错误的include
,你应该以其他方式实现它。
为什么使用include
重定向到用户帐户是错误的?我搜索了它,但没有找到答案。
请不要气馁...在此先感谢。