php文章点击查看代码,现在我们看到很多的网站都会有文章被浏览多少点,点击多少次,评论多少次,等是吧,下面我们这程序就是根据不同的参数实现文章访问多少次.
function newadd($id,$tag,$p){
if($p=='new'){
if(0== $tag){
mysql_query("update gx_news set new_hit=new_hit+1 where id='$id'");
}else{
$result =mysql_query("select new_hit,id from gx_news where id='$id'");
$rs =mysql_fetch_array($result);
echo $rs[0];
}
}else{
if(0== $tag){
mysql_query("update gx_case set case_hit=case_hit+1 where id='$id'");
}else{
$result =mysql_query("select case_hit,id from gx_case where id='$id'");
$rs =@mysql_fetch_array($result);
echo $rs[0];
}
}
}
时间: 2024-10-03 22:06:52