分类:
2008-04-18 09:47:16
第一篇
人大多都很向往使用来做自己的计数器,留言本,论坛之类的东西了,本篇将介绍本人自制的计数器程序。
首先建立0~9这10个GIF数字图片,放在img文件夹下,再建立一个文件
——count1.php,程序如下:
$linkptr=mysql_pconnect("localhost","yourname","password");
mysql_select_db("yourname",$linkptr);
mysql_query("update counter
set visited=visited 1 where num=1",$linkptr);
$result=mysql_query("select visited
from counter where num=1",$linkptr);
list($counter)=mysql_fetch_row($result);
$counter=sprintf("d",$counter);
for($i=0;$i<5;$i ){
$tmpstr="";
echo $tmpstr;
}
?>
在主页上适当位置放置代码 include "count1.php" ?>,这样主页上就显示了你的计数器,不过要记住在你的数据库上建立一个TABLE——counter:create table counter(
num int unsigned,
visited int unsigned
);
怎么样,容易吧!中篇我将介绍怎样让你的镜像站也能用上你自己的计数器。
第二篇
本篇将介绍在自己的镜像站上也能放上自己的计数器。
我以假设您有多个镜像站为例,首先在数据表中插入几个新的数据num、visited,这在你的镜像站上将用的着,只要将上篇中的count1.php改一下即可.
先建立一个文件夹count,里面放上您要用的文件count2.php,count3.php……,举个例子,如count2的源码,将count1.php改成:
$linkptr=mysql_pconnect("localhost","yourname","password");
mysql_select_db("yourname",$linkptr);
mysql_query("update counter
set visited=visited+1 where num=2",$linkptr);
$result=mysql_query("select visited
from counter where num=2",$linkptr);
list($counter)=mysql_fetch_row($result);
$counter=sprintf("%05d",$counter);
for($i=0;$i<5;$i++){
$tmpstr="";
echo $tmpstr;
}
?>
注意:" 做完这一步,我们再建立一个文件夹show,里面放上对应的文件show2.php,
show3.php……,以show2.php为例,源码写为:
document.write(" include "../count/count2.php" ?>");
注意: include "../count/count2.php" ?>别忘了count前打上两点,这才是完整的路径!
最后,在您的镜像站上适当的位置放置:
是我在OSO上的空间,您可以换成您自己的!
好了,一切OK!看看您的镜像站主页计数器是否也显示出来了?下篇我只是介绍向您的站点会员提供免费计数器的一些构思,基本上就是本篇内容的一些拓展.