gpt4 book ai didi

php mysql 重定向不起作用

转载 作者:行者123 更新时间:2023-11-29 21:04:18 27 4
gpt4 key购买 nike

如果出现重复情况,我深表歉意,但我还没有看到任何与此问题相关的内容。

我正在尝试在用户登录后将其重定向回主站点。

这是我的表单代码,

<form class="navbar-form navbar-right" name="input" action="login.php" method="GET">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="Username" class="form-control" placeholder="Username">
</div>
<div id="loginPasswordGroup" class="form-group">
<label for="password">Password</label>
<input type="password" id="password" class="form-control" placeholder="Password">
<span id="loginPasswordGlyph" class="glyphicon form-control-feedback" aria-hidden="true"></span>
</div>
<button type="submit" id="loginUser" class="btn btn-default">Login</button>
</form>

这是我的登录代码,

<?php

include("dbconnect.php");
//LOCK the table
mysql_query("LOCK TABLES LOGIN WRITE;");
$log = mysql_real_escape_string($_GET["Username"]);
$result = mysql_query("SELECT * FROM users WHERE Username='$log'");
if ($result >0)

header('location: http://bdpastudents.com/~t4645202/2015-2016/Message%20Board/Message%20Board%20Lab%201/');
exit;

else {

echo "<h2>Invalid Username or Password!<br></h2>";
};

//UNLOCK the table
mysql_query("UNLOCK TABLES;");

?>

每次我尝试登录时,都会收到错误消息。 Php 对我来说仍然很困惑,所以对此进行一些说明会很棒。谢谢。

最佳答案

首先,mysql 库在 PHP 5.5.0 中已被弃用。您可能想使用 mysqli 来代替。我注意到的第一件事是您缺少 MySQL 资源对象:

$con = mysqli_init();
if (!$con->mysqli_real_connect("host", "mysql_user"
"mysql_password", "database")) {
echo "could not connect";
exit;
}
$log = $con->real_escape_string($_GET['username']);
$result = $con->query("SELECT * FROM users WHERE Username='$log'");
if ($result !== false && $results->num_rows > 0) {
echo "<script>window.location = 'http://something';</script>";
} else {
echo "Invalid user";
}
$con->close();

关于php mysql 重定向不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36957051/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com