我想展示新闻细节。 detail.php页面,但它没有在detail.php页面.in detail.php中选择id

时间:2017-04-16 16:01:31

标签: php mysql

我想要显示新闻详情。 detail.php页面,但它没有在detail.php页面.in detail.php页面中选择id我已经写了查询选择id但在id我应该放置什么?

while($row = $result->fetch_assoc()) {

 echo  '<li><a href="detail.php?'.$row["news_id"].'">';
 echo  $row["title"];
 echo  '</a></li>';
}

1 个答案:

答案 0 :(得分:1)

如果您没有为查询字符串参数命名,则无法在detail.php中获取该ID。

试试这个:

<?php
echo  '<li><a href="detail.php?id='.$row["news_id"].'">';

detail.php中你可以得到id这样的内容:$id = $_GET['id']