gpt4 book ai didi

php - 从 id 中检索用户信息

转载 作者:搜寻专家 更新时间:2023-10-30 22:02:00 25 4
gpt4 key购买 nike

我正在开发一个网络应用程序,但遇到了一个小问题。我在数据库中有一个表,persons,它包含以下字段:id、职位(在公司)、用户名、名字、姓氏。我正在处理 edit_user 页面。我有一个主页,列出了所有用户的名字和姓氏。然后我可以单击名称,这会将我带到与该用户对应的 edit_user 页面。但是,我在网站上所做的更新不会发送到数据库(请参见下面的代码)。

//Inserting updates into database
$query = "UPDATE person SET
privilege = '{$privilege}',
nexus = '{$nexus}',
firstname ='{$firstname}',
lastname = '{$lastname}'";
$query .=" WHERE id={$personid}";
$result = mysql_query($query,$connection);
if (mysql_affected_rows() == 1) {
$message = "User was successfully updated";
} else {
$message = "User was not updated";
$message .= "<br/>" .mysql_error();
}

我的预感是 {$personid} 有问题,它被定义为:

function find_selected_user() {
global $user;
if (isset($_GET['personid'])) {
$personid = $_GET['personid'];
return $personid
} else {
$user = NULL;
}
}

(上面的函数应该返回$user信息的数组)请帮助 - 我被困住了!我确信它是如此简单,但我已经想了太久

最佳答案

你忘记了结局;这里的字符:

return $personid

应该是:

return $personid;

关于php - 从 id 中检索用户信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10601624/

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