我是一名iphone程序員,在php和mysql中並不那麼出色。我的問題是,我有一個在線高分系統,在我的所有模式中都有3張桌子。我試圖根據來自GET變量的輸入來選擇表,但它不起作用。這是我在php中的代碼。根據GET變量選擇表格
$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是表格。
我希望你能幫助我,它就是行不通的。
乾杯,喬。
任何錯誤輸出張貼這件事看到的事情嗎? 'echo $ _GET ['type']'返回什麼?並且url必須是'http://test.com/game?type = Sprint'類似的東西。 – Alex 2012-02-20 19:06:23
echo $ typeGame =? – 2012-02-20 19:08:36
@ Furgas的回答應該這樣做 – Alex 2012-02-20 19:09:15