|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我先解释一下我的学习思路。 本篇将引见在本人的镜像站上也能放上本人的计数器。
我以假定您有多个镜像站为例,起首在数据表中拔出几个新的数据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!看看您的镜像站主页计数器是不是也显示出来了?下篇我只是引见向您的站点会员供应收费计数器的一些构想,根基上就是本篇内容的一些拓展.
刚开始写页面程序,调试完书中的例子。然后就可以尝试编写留言板了, |
|