Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 12-21-2006, 04:35 PM Counter Script
McBone's Avatar
Super Talker

Posts: 149
Name: i have left
Location: i have left
Trades: 0
I have been looking endlessly for a counter script for a site im working on, all i need is a simple text one, on one page that counts all visits, not unique, no txt file or database, just simply a number on the index page which increases, cant i find any?? nope!

Any ideas you lovely folks??
McBone is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-21-2006, 07:23 PM Re: Counter Script
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
hope this helps you out but a simple one would not be hard to make if you want all the code run on your site but here is a site where you can sign up for one and it's just copy and pasting the code over to your site.. http://www.statcounter.com/free_hit_counter.html

hit register on the left and off you go
__________________
A patch is a piece of software which replaces old bugs with new bugs.

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 12-22-2006, 05:45 AM Re: Counter Script
McBone's Avatar
Super Talker

Posts: 149
Name: i have left
Location: i have left
Trades: 0
thanks for the link it looks good, but i would need one running from the site it will be on, the site will be distributed about, and with no webmaster as such to look after things regularly
McBone is offline
Reply With Quote
View Public Profile
 
Old 12-22-2006, 09:14 AM Re: Counter Script
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
no problem got a solution here and will refrence the site since it is not mine...

this one was downloaded from http://www.onlinephpscripts.com/ it's a combination of mysql and php so you need to setup a mysql user/pass/db and execute these queries
CREATE TABLE `counter` (`counter` int( 9 ) NOT NULL);
INSERT INTO 'counter' ('counter') Values (0);

then the php code is as follows
PHP Code:
<?php
//These variables are for connecting to database. Using MySQL you need a username, password, and name of database you are connecting to.
$user="onlineph_admin";
$password="admin";
$database="onlineph_members";
//Make the connection to the database with the mysql_connection command.
mysql_connect("localhost",$user,$password);
//Select the database we set up with the SQL file, which is included with this file.
@mysql_select_db($database) or die( "Unable to select database");
//SQL query that selects the counter and adds one to it each time the page is loaded.
mysql_query("UPDATE counter SET counter = counter +1");
//Puts the value for counter, which is in the database into a variable that we can call later.
$count mysql_fetch_row(mysql_query("SELECT counter FROM counter"));
//Prints out the value of count which we got from the database
print "$count[0]";
//closes the connection to the database
mysql_close();
?>
__________________
A patch is a piece of software which replaces old bugs with new bugs.

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 12-22-2006, 11:00 AM Re: Counter Script
McBone's Avatar
Super Talker

Posts: 149
Name: i have left
Location: i have left
Trades: 0
excellent!! blackhawkpowers comes through once again, i will have to add you to my acknolegments page

thanks again!!
McBone is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Counter Script
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.26607 seconds with 12 queries