检查DB中是否存在变量或者是否设置了变量

时间:2013-11-03 08:29:26

标签: php mysql sql

好的,所以我希望这段代码片段检查数据库中是否存在变量$ _GET ['p'],如果它确实存在$ p = $ _GET ['p'],如果它不存在那么make $ p ='1',如果在链接中没有设置$ _GET ['p'],则只显示id为0的页面($ p ='0';)。这是我的代码。它仅在链接中设置变量时显示“未知页面”。

if (isset($_GET['p']))
{
    $getpage = $_GET['p'];
    $sql     = sprintf("SELECT * FROM pages WHERE id=%d LIMIT 1", $getpage);
    $result  = $con->query($sql);
    if ($result && $result->mum_rows > 0 ){ 
        // if page id exists in "pages" table, then make $p = $_GET['p'].
        $p = $getpage;
    }
    else
    { 
        // if "p" ID doesn't exist in DB, then show "unknown page" page with id of "1".
        $p = '1';
    }
}
else if (!isset ($_GET['p'])) 
{
    //if variable "p" isn't set in link then display homepage or page with ID of 0.
    $p = '0';
}

1 个答案:

答案 0 :(得分:1)

正如我评论它只是关于代码格式和排列,这里有另一个建议,当你在进行故障排除时很有帮助并且非常简单:

function has_page_row(Mysqli $db, $pageId) 
{
    $sql    = sprintf("SELECT * FROM pages WHERE id=%d LIMIT 1", $getpage);
    $result = $db->query($sql);
    return $result && $result->mum_rows > 0;
}


$hasGet = isset($_GET['p']);
$hasRow = $hasGet && has_page_row($con, $_GET['p']);

$p = '0';
if ($hasRow) {
    $p =  $_GET['p'];
} elseif ($hasGet) {
    $p = '1';
}

然后,您还可以通过更改新has_page_row函数中的代码轻松修复有关dorky SQL查询的问题,请参阅: