本篇將介紹在自己的鏡像站上也能放上自己的計數器。
我以假設您有多個鏡像站為例,首先在資料表中插入幾個新的資料num、visited,這在你的鏡像站上將用的著,只要將上篇中的count1. php改一下即可.
先建立一個資料夾count,裡面放上您要用的檔案count2.php,count3.php…,舉個例子,如count2的來源碼,將count1.php改成:
$linkptr=mysql_pconnect("localhost","yourname","password");
mysql_select_db("yourname",$linkptr);
mysql_select_db("yourname",$linkptr);
my_quequery( "update counter
set visited=visited 1 where num=2",$linkptr);
$result=mysql_query("select visited
list($counter)=mysql_fetch_row($result);
$counter=sprintf(" d",$counter);
for($i=0;$i $tmpstr="";
echo $tmpstr;
}
?>
注意:" 做完這一步,我們再建立一個資料夾show,裡面放上對應的檔案show2.php,
show3.php…,以show2.php為例,原始碼寫為:
document.write(" include "../count/count2.php" ?> a>");
注意: include "../count/count2.php" ?>別忘了count前打上兩點,這才是完整的路徑!
最後,在您的鏡像站上適當的位置放置程式碼:
http:// cnfree.oso.com.cn 是我在OSO上的空間,您可以換成自己的!
好了,一切OK!看看您的鏡像站主頁計數器是否也顯示出來了?下篇我只是介紹向您的站點會員提供免費計數器的一些構思,基本上就是本篇內容的一些拓展.