- 论坛徽章:
- 0
|
刚刚学习php,在测试从数据库中读取数据并显示时$id无法得到赋值,而$ftitle,$ftime可以正确显示,
即echo "<a href=news_info.php?id=$id>";这一句只显示为news_info.php?id=而不是查询所得值如:
news_info.php?id=2
代码如下,问题出在哪里呢?
<?php
if($offset==" ")
{
$offset=0;
}
$connect=mysql_connect("localhost","root","");
$query="select title,time from news order by id desc limit $offset,15";
$result=mysql_db_query("dzj",$query);
$num=mysql_num_rows($result);
if($num!=0)
{
while($r=mysql_fetch_array($result))
{
$id=$r["id"];
$ftitle=$r["title"];
$ftime=$r["time"];
echo " <tr><td width=20 bgcolor=#C2E0A5 class=NT9 align=center></td>";
echo "<td width=350 class=NT9 bgcolor=#C2E0A5>";
echo "<a href=news_info.php?id=$id>";
echo $ftitle;
echo "</a></td>
<td width=150 class=NT9 bgcolor=#C2E0A5 align=center>";
echo $ftime;
echo "</td></tr>";
}
}
?>
[ 本帖最后由 hothot 于 2007-2-3 13:23 编辑 ] |
|