JBTALKS.CC

标题: 请问要怎要做 网页浏览总次数 [打印本页]

作者: 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 (https://www.jbtalks.cc/) Powered by Discuz! X2.5