gpt4 book ai didi

php - 类中的 MySQL 导致挫折

转载 作者:行者123 更新时间:2023-12-01 00:13:18 25 4
gpt4 key购买 nike

<分区>

我有这个代码:

<?php 

class guildData {

public $email = NULL;
public $hash_pw = NULL;
public $user_id = NULL;
public $clean_username = NULL;
public $display_username = NULL;

public function selectGuild($g_id)
{
global $db,$db_table_prefix;

$this->g_id = $g_id;

$sql = "SELECT
name
FROM
guild
WHERE
id = '".$g_id."'";

$result = $db->sql_query($sql);

$row = $db->sql_fetchrow($result);

return ($row['name']);
}
}
?>
<?php echo $guildData->selectGuild(1); ?>

我只是收到一个 500 错误,IDEone 也给了我这个:

fatal error :在第 32 行调用/home/VT00Ds/prog.php 中非对象的成员函数 selectGuild()

我看不到错误,你能帮帮我吗?

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