我正在尝试使用PDO从我的index.php获取id。在我的index.php代码下,我已将id通过url传递给我的topic.php文件。现在我不知道如何使用PDO获取id。
这是我的代码:
$sql = "SELECT
topicid,
topicsubject
FROM
topics
WHERE
topicid = ? ";
$result = $db->prepare($sql);
$result->bindValue(1, $_GET['id'], PDO::PARAM_INT);
$result->execute();
$numrows = $result->fetchColumn();
我不确定我的代码是对还是错。有人可以帮我这个。