Quick Login   
 
Register AdminFusion Tutorials
 
Featured Sponsors


One.com Domain and Hosting


Register
Forum of the Month
Australian Webmaster
fotm

A webmaster forum specifically catering for Australian site owners. We discuss site development, marketing and management issues.

Tag Cloud
Latest Threads
Forum Stats
7,900 Members
165,086 Posts
55 Users Online

Please welcome our newest member, Jors308932!

Affiliates
Go Back AdminFusion » Getting Started » Software » WebSite Counter Script
Welcome to the AdminFusion. AdminFusion is the ultimate resource for forum administrators and moderators. With exclusive articles, interviews with the experts, free downloadable skins, and the revolutionary post exchange system - PostFusion, AdminFusion is the place to go for all of your forum needs.  By joining AdminFusion, you will become part of a thriving admin community and immediately gain access to all of these resources. Registration is fast, simple and absolutely free so please join us today!
Want more than our forums? Try these: Post Fusion Forum Matrix
Old 01-03-2006, 12:09 AM   #1

Eminem's Avatar

Title: Forum Addict

Points: 5,973, Level: 22Points: 5,973, Level: 22Points: 5,973, Level: 22
Level up: 23%, 77 Points neededLevel up: 23%, 77 Points neededLevel up: 23%, 77 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jun 2006

Posts: 1,177

Eminem is on a distinguished road
 
 
Exclamation WebSite Counter Script

A common feature on most websites is a counter to show how many visitors have been to your site. This is my first example to show how to achieve this

This example is very basic and far from ideal if you want an accurate count of your visitors because if you press refresh your counter will always increment by 1. This example does show some useful techniques such as opening and closing files .

Lets go through the process one step at a time . Firstly you have to create a simple text file and enter the number you wish the counter to start at , note this does not have to be 1 it can be any number you wish.
T he next task will be to upload this to your server , if you have a Unix server this is where you have to watch because you have to set the permissions for your text file so the script can read and write to the file .
To change this you CHMOD your text file to 755. Refer to the help file or documentation of your FTP program to see how to achieve this.

Now for the script , call this something like counter.php
Code:
<?php
//this is our text file if you create a different named file change the script below to reflect this
$counter_file = ("counter.txt");
//now we open the file
$visits = file($counter_file);
//this increments the counter value by 1
$visits[0]++;
//now we will open the counter file for writing "w"
$fp = fopen($counter_file , "w");
//put the new count value into the counter file
fputs($fp , "$visits[0]");
//close the file
fclose($fp);
//display the count
echo "There have been $visits[0] visitors so far";
?>
Now add the following to your page where you wish the counter to appear:
Code:
<?php include("counter.php"); ?>
--------------------------------------

Source: Webguava
Reply With Quote
Old 08-20-2008, 05:05 PM   #2

Title: Lurker

Points: 12, Level: 1Points: 12, Level: 1Points: 12, Level: 1
Level up: 1%, 38 Points neededLevel up: 1%, 38 Points neededLevel up: 1%, 38 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Aug 2008

Posts: 1

lolitad is on a distinguished road
 
 
this code can be added to a joomla site?
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

 
Posting Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Unlimited Web Hosting - Only $15/ Year 71mmy Buy and Sell 0 10-22-2006 10:11 PM
Halloween Special csquare016 Buy and Sell 0 10-17-2006 05:00 AM

AdminFusion

All times are GMT +1. The time now is 10:59 PM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0 © 2005-2008 AdminFusion - All Rights Reserved



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72