打造计数器DIY三步曲
第一篇
人大多都很向往使用数据库来做自己的计数器,留言本,论坛之类的东西了,本篇将介绍本人自制的计数器程序。
首先建立0~9这10个gif数字图片,放在img文件夹下,再建立一个php文件
——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="<img src=img/".substr($counter,$i,1).".gif >";
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="<img
src=http://cnfree.oso.com.cn/img/".substr($counter,$i,1).".gif border=0 >";
echo $tmpstr;
}
?>
注意:"<img
src=……"中一定要放上完整的路径,否则您的计数器将无法显示出来!
做完这一步,我们再建立一个文件夹show,里面放上对应的文件show2.php,
show3.php……,以show2.php为例,源码写为:
document.write("<a
href=http://cnfree.oso.com.cn target=_blank title= 中国免费资源信息联盟 ><? include
"../count/count2.php" ?></a>");
注意:<? include
"../count/count2.php" ?>别忘了count前打上两点,这才是完整的路径!
最后,在您的镜像站上适当的位置放置代码:
<script language=javascript
src=http://cnfree.oso.com.cn/show/show2.php></script>
http://cnfree.oso.com.cn 是我在oso上的空间,您可以换成您自己的!
好了,一切ok!看看您的镜像站主页计数器是否也显示出来了?下篇我只是介绍向您的站点会员提供免费计数器的一些构思,基本上就是本篇内容的一些拓展.
制作:罗可龙 电邮:luokelong(at)it168.com