Tuesday, August 3, 2010

hit counter

hit counter

PHP Code:

/** 
 * Create an empty text file called counterlog.txt ,Chmod 777 it and**
 * upload to the same directory as the page you want to**
 * count hits for. 
 ***
 * Add this line of code on your page: 
 *  
 */ 

// Open the file for reading  
$fp fopen("counterlog.txt""r"); 
// Get the existing count  $count fread($fp1024); 
// Close the file  fclose($fp); 
// Add 1 to the existing count  $count $count 1
// Display the number of hits 
// If you don't want to display it, comment out this line  
echo "

Page views:" 
$count "
"

// Reopen the file and erase the contents  $fp fopen("counterlog.txt""w"); 
// Write the new count to the file  fwrite($fp$count); 
// Close the file  fclose($fp); 
?>

No comments:

Post a Comment