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];
}
}
}