Jump to content

Recommended Posts

I have the following code that reads and file and adds one to it before saving it again (this is being used as a hit counter).  However I at the moment it adds one every time the page is refreshed and I only want it to add one once no matter how many times they refresh the home page. 

 

I have tried to use a variable to stop this by checking if the variable has been set but it's not working.  Do I need to make it a global variable and if so how do I do that.  (I know I could make it work by using a session variable but I don't want to hassle of creating a session just for that. 

 

if (!$counter_set_index) {
$countfileindex = "counterindex.txt"; 

$handle = fopen($countfileindex, 'r+') ; 

include("includes/inc_counter.php");

$counter_set_index = 1;

} 

Link to comment
https://forums.phpfreaks.com/topic/207821-global-variables/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.