gpt4 book ai didi

php - 使用 php 执行查询

转载 作者:行者123 更新时间:2023-11-30 00:42:41 26 4
gpt4 key购买 nike

我使用以下查询来验证表单发布的登录信息。但每当我运行查询时,我都会收到内部服务器错误。我不确定我做错了什么。

<?php
if(isset($_POST["userName"]) && isset($_POST["password"])){
$userName = $_POST["userName"];
$password = $_POST["password"];
include "http://evocature.com/scripts/db_connect.php";
$results = mysql_query("SELECT id
FROM admins
WHERE userName = '$userName'
AND password ='$password' LIMIT 1");

$existCount = mysql_num_rows($results);
if($existCount == 1){
while($row = mysql_fetch_array($results)){
$id = $row["id"];
}
$_SESSION["id"] = $id;
$_SESSION["manager"] = $manager;
$_SESSION["password"] = $password;
header("Location: http://www.evocature.com/admin/index.php");
exit();
}
else{
echo 'Invalid Information';
exit();
}

}

最佳答案

我相信您可以包含 http 页面。不会在这个方法中。

关于php - 使用 php 执行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21640901/

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