|登录 |注册

查看: 1177|回复: 7
打印 上一主题 下一主题

请问要怎要做 网页浏览总次数

[复制链接]
firebear
2012-12-14 02:18 PM
请问要怎要做 网页浏览总次数  
magickito
2012-12-14 03:14 PM
http://zhidao.baidu.com/question/40033829

可是我还是不能
weeming21
2012-12-14 03:36 PM
如果你会写server side scripting, 可以用代码把每个访问加进去一个数据库保存,然后调用显示总浏览量
如果你不会,那么你可以找一些第三方计算的插件,google下 web counter 有很多免费的
sausiang89
2013-1-28 01:48 PM
如果你只是要給別人看的話,可以找web counter,免費的很多

假如你是要自己做一些統計資料的話,要看你用什麼語言,比較推薦使用 php + mysql
shirley1030
2013-2-28 11:49 AM
Dear Mr/Mrs:

We are from FIND US.COM which is a professional website development company located at Sri Desa Hartamas,Kuala Lumpur. We would like to take to take this chance to introduce to you the advantages for having a website.

Advantages of own a website:
I. You can publicize your business, service or products to millions of potential customers. Having a web site can increase your sales.
II. You can update your web site with your latest news or prices much easier and cheaper than print based media. A web site can save you a lot of money in communication and administration costs.
III. Web sites make it easier for customers to do business with you or built a relationship. These customers can be global or local.
IV. You can compete with other companies in your market area.
V. Website just like an identity card of your company. You can now place your web site address on your business card to enhance your image.

STARTING FROM RM 999++ !!! Thus, what are you waiting for? Come and FIND US to help you more on your business. For more information, please feel free to drop us an e-mail or buzz us at:

Company Name : FIND US COM
Address :28-2,Jalan 28/70A,
Desa Sri Hartamas,
50480 Kuala Lumpur.
Tel :+603-2858 7234
Contact Person : Shirley Chu
:+6016-3621755
Personal Consultant : Vincent Chan
+6012-9290826
vampcheah
2013-3-2 04:32 AM
其实网上有很多不同类型的统计器,例如 http://www.google.com.my/analytics/ (免费)
或者自行安装开源的 Website Analytics Software  
兴杰
2013-3-2 06:12 PM
第三方软件没用过(不过通常用第三方会很方便), 自己做的话可以试试在页面被访问时添加数据库资料,然后在取回新的记入 . 如果你需要代码可以pm 我, mail 给你,之前写过 不过我的是 asp.net + MySql 版本的 ^^
xinyou
2013-3-3 06:33 AM
<?php
$filename="count.txt";
if(file_exists($filename)!=true)
{
$fp = fopen($filename, 'x');  
fwrite($fp, '1');
}
else
{
$fp = fopen($filename, 'rb');  
}
$contents = fread($fp, filesize($filename));
$contents++;
fclose($fp);
$fp = fopen($filename, 'w');
fwrite($fp, $contents);
echo $contents;
?>
save as 任何名字.php


最原始的方法
您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2025-4-16 11:11 PM , Processed in 0.104042 second(s), 20 queries .

Powered by Discuz! X2.5 © 2001-2012 Comsenz Inc.

本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved

Dedicated Server powered by iCore Technology Sdn. Bhd.

合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部