Name:        Click Counter Script
Author:      MF Scripts - http://www.mfscripts.com
Contact:     info@mfscripts.com  (This script is offered without any support)
Date:        13th November 2013
Licence:     Free (please drop me a note and let me know if you are using it)

Installation notes:
	- Unzip the files in the same folder as your website.
	- Choose which styles you wish to have then transfer the CSS code to your CSS file if you do not wish to have 2 seperate css 
	files. 
	- Edit the counter.txt file with the variables you wish to use. See below for counter.txt instructions.
	- Set the permissions on counter.txt to writable (CHMOD 777 or 755 depending on your web host) 
	- See click_counter.php for examples of how to create your links. 

counter.txt instructions:
	- Please note that in the counter.txt file, the contents should be in the following format: MFScripts|1|http://mfscripts.com/|0
	the text is split into 4 different variables, which have been separated by a "|". 

	- The first of these variables is the "label" of that particular string. This is so you are able to easily distinguish the 
	URL's apart. The name of the label can be anything you desire. 

	- The second variable is the "ID" number of that string. This variable plays a key part in the functioning of the script 
	as this is the number that is called in the Href so that the script knows which particular URL you wish to redirect to. 

	- The format of any Href used with this script should be the following: href="link.php?id=1" href="link.php?id=2" etc etc.
	The number is changed depending on which URL you wish to call. If you are ever confused as to which URL you are calling 
	then simply look at the counter.txt file, or click statistics page. 

	- The third variable in the counter.txt file is the URL that you wish to redirect to. 

	- The last variable is the number of clicks that that particular URL has acquired. If you wish to reset this variable then
	simply open the counter.txt file and alter the number to 0. This automatically counts up by 1 each time the URL is clicked. 

Additional notes:

	- Notes within the source code are supplied to help give you a better understanding of the script. 

	- The script is supplied with 3 themes to choose from, simply look for the following code below, and change the name of the 
	css file wthat the "Href" is calling.

	"<link rel="stylesheet" href="style_blue.css" type="text/css" media="screen" />"
	
	- This script is has been developed to make it as easy as possible for you to use it. You do not have to alter any code
	within the table or PHP code if you want to add another link to the counter.txt file. All you have to 
	do is add the string to the counter.txt file in its correct format, and the rest is done for you. 