人大多都很嚮往使用資料庫來做自己的計數器,留言本,論壇之類的東西了,本篇將介紹本人自製的計數器程序。
先建立0~9這10個GIF數位圖片,放在img資料夾下,再建立一個PHP檔案
-count1.php,程式如下:
$linkptr= mysql_pconnect("localhost","yourname","password");
mysql_select_db("yourname",$linkptr);
mysql_query("update counter ,$linkptr);
$result=mysql_query("select visited
from counter where num=1",$linkptr);
list($counter)=mysql_fetch_row($linkptr);
list($counter)=mysql_fetch_row($result); counter=sprintf("%05d",$counter);
for($i=0;$i $tmpstr="";
echo $tmpstr;
}
?>
在主頁上適當位置放置代碼 include ? ,這樣主頁上就顯示了你的計數器,不過要記住在你的資料庫上建立一個TABLE——counter:create table counter(
num int unsigned,
visited int unsigned
);
); 🎜> 怎麼樣,容易吧!中篇我將介紹怎樣讓你的鏡像站也能用上你自己的計數器。
以上就介紹了計數器及其應用 打造計數器DIY三步曲上,包括了計數器及其應用方面的內容,希望對PHP教程有興趣的朋友有所幫助。