所以当我这样做的时候
<?php echo $_GET['id']; ?>
我得到一个结果:1
但是当我将它用于我的查询时,我得到了错误
This discussion does not exists.
我复制粘贴了一点代码,因为这个问题不需要其余的代码。这是我的代码:
if(isset($_GET['id']))
{
$id = $_GET['id'];
//We get the title and the narators of the discussion
$req1 = $db->prepare('select title, user1, user2 from pm where id="'.$id.'" and id2="1"');
$req1->execute();
$dn1 = $req1->fetch();
echo $dn1['title'];
{
echo '<div class="message">This discussion does not exists.</div>';
}
}