<?php
/*
*访客计数器
*/
$counterFile = "counter.txt";
function displayCounter($counterFile) {
$fp = fopen($counterFile,"rw");
$num = fgets($fp,5);
$num += 1;
print "您是第 "."$num"." 位访客";
exec( "rm -rf $counterFile");
exec( "echo $num > $counterFile");
}
if (!file_exists($counterFile)) {
exec( "echo 0 > $counterFile");
}
?>
<!--使用-->
<div align="center">
<br><?php displayCounter($counterFile);?><br>
</div>
---------------------------------------------------------------------------------------------------------------
<script>
function setfirst() {
u="http://www.tiantengelec.com.hk/";
if(!hp.isHomePage(u))
{hp.setHomePage(u);}
else
{
document.write("你已成功设http://www.tiantengelec.com.hk/为首页,本站将为你提供更好的服务!<p><a href=http://www.tiantengelec.com.hk/>返回首页</a>");
}
if(!hp.isHomePage(u))
{
document.write("你还没有设http://www.tiantengelec.com.hk/为首页,请<a href=http://www.tiantengelec.com.hk/>返回首页</a>");
}
}
</script>
<!--使用-->
<TD width="91" height="118"><div align="center" class="w3"><a href="javascript:window.external.AddFavorite('http://www.tiantengelec.com.hk/', '“天腾电子”"/www.tiantengelec.com.hk')">加入收藏</a><br>
<br> <br>
<a href="javascript:setfirst()">设为首页</a></div></TD>
posted on 2005-05-31 13:07
楚客 阅读(231)
评论(0) 编辑 收藏 所属分类:
HTML 、
PHP