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