PHP Notice: Undefined variable 错误
<?phpheader('Content-type:text/html;charset=gbk');include("conn.php");//引入数据库连接文件if(!...
<?php
header('Content-type: text/html; charset=gbk');
include("conn.php");//引入数据库连接文件
if(!empty($_GET['id'])){
$a=$_GET['id'];
$mysql="select * from test where id='$a' ";
$b=mysql_query($mysql);
$sql="update test set hits=hits+1 where id='$a' ";
$rs=mysql_fetch_array($b);
}
?>
<h1><?php echo $rs['title']; ?></h1>
<h2><?php echo $rs['dates']; ?></h2>
<h3>访问量:<?php echo $rs['hits']; ?></h3>
<hr/>
<p>
<?php echo $rs['contents']; ?>
</p>
在网页上显示的结果就是 HTml中的 rs 变量未定义 展开
header('Content-type: text/html; charset=gbk');
include("conn.php");//引入数据库连接文件
if(!empty($_GET['id'])){
$a=$_GET['id'];
$mysql="select * from test where id='$a' ";
$b=mysql_query($mysql);
$sql="update test set hits=hits+1 where id='$a' ";
$rs=mysql_fetch_array($b);
}
?>
<h1><?php echo $rs['title']; ?></h1>
<h2><?php echo $rs['dates']; ?></h2>
<h3>访问量:<?php echo $rs['hits']; ?></h3>
<hr/>
<p>
<?php echo $rs['contents']; ?>
</p>
在网页上显示的结果就是 HTml中的 rs 变量未定义 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询