程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 文章閱讀次數的記錄與顯示函數php

文章閱讀次數的記錄與顯示函數php

編輯:關於PHP編程

/*計數函數
$table 表名
$counname 計數存放字段
$idname ID字段名
$id 所查詢的ID號
$view 保存還是查看數
作者:microrain
主頁:http://www.codechina.net
Email:[email protected]
*/

function counter($table,$counname,$idname,$id,$view) {
//查詢當前浏覽數
$sql="select * from $table where $idname=$id";
$result=mysql_query($sql);
$objresult=mysql_fetch_object($result);
$count=$objresult->$counname;
//更新數據庫,並反回當前浏覽數作為結果
$count2=$count+1;
if($view){

$sql="update $table set $counname=$count2 where $idname=$id";
mysql_query($sql);
}
return $count2;
}
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved