Count the visitor of website

This is a discussion on Count the visitor of website within the PHP Language forums, part of the PHP Programming Forums category; Dear All, i have get combination of four PHP script for count the visitor of website but when i apply ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 09-29-2007
Dev
 
Posts: n/a
Default Count the visitor of website

Dear All,
i have get combination of four PHP script for count the visitor of
website but when i apply all these i have no answer.
i am posting the code of all four PHP script below.

CODE OF INDEX.PHP
<?php

print "<font face='verdana' size='1'>";

If (file_exists( "counter.txt" )){
include_once "read.php";

$count++;

echo "This page has been visited <b>$count</b> times";

include_once "write.php";
} else {
print "<font color='red'><b>Error</b>: Cannot find Counter Data File!
</font>";
}

print "</font>";

?>


CODE OF COUNT.PHP
<?php

print "<font face='verdana' size='1'>";

If (file_exists( "counter.txt" )){
include_once "read.php";

$count++;

include_once "write.php";
} else {
print "<font color='red'><b>Error</b>: Cannot find Counter Data File!
</font>";
}

print "</font>";

?>

CODE OF READ.PHP
<?php
$file = "counter.txt";

$open = fopen( $file, "r" );
$count = fread ( $open, filesize ( $file ) );
fclose( $open );
?>

CODE OF WRITE.PHP
<?php
$file = "counter.txt";

$open = fopen( $file, "w" );
fwrite( $open, $count );
fclose( $open );
?>

THERE IS ONE FILE ALSO NAMED COUNTER.TXT HAVING 0

any body help me to apply these correctly because i am new to PHP.
Please tell me
1. correct location of each script in my index.html page
2. any extra code (if any) for the index.html page.

thanks in advance.

Dev

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 04:53 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0