gpt4 book ai didi

php - 根据 GET 变量选择表

转载 作者:行者123 更新时间:2023-11-29 06:10:33 25 4
gpt4 key购买 nike

我是一名 iPhone 程序员,对 php 和 mysql 不太了解。我的问题是,我有一个在线高分系统,其中有 3 个表,适用于我在游戏中的所有模式。我试图根据 GET 变量的输入选择表,但它不起作用。这是我的 php 代码。

   $typeGame = isset($_GET['type']) ? $_GET['type']  : "";
$typeGame = mysql_real_escape_string($type);
if ($typeGame === "Sprint") {
$table = "highscoresSprint";
}
else if ($typeGame === "Normal")
{
$table = "highscoresNormal";
}
else
{
$table = "highscoresMarathon";
}

其中 typeGame 是请求的游戏类型,$table 是表格。

我希望你能帮助我,但这是行不通的。

干杯,乔。

最佳答案

尝试:

$typeGame = mysql_real_escape_string($typeGame);

而不是:

$typeGame = mysql_real_escape_string($type);

关于php - 根据 GET 变量选择表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9366860/

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