Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3301672
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:46:29+00:00 2026-05-17T20:46:29+00:00

Currently I have a file called hits.php and on any page I want to

  • 0

Currently I have a file called “hits.php” and on any page I want to track page hits I just use <?php include("hits.php"); ?>

How can I track unique visitors only though? My hits are false since it can be refreshed by the same person and hits go up.

Here’s my source:

<?php
 $hits = file_get_contents("./client/hits.txt"); 
 $hits = $hits + 1; 

 $handle = fopen("./client/hits.txt", "w"); 
 fwrite($handle, $hits); 
 fclose($handle); 

 print $hits; 

?>

I don’t really know how I could do cookie checking… is there a way to check IP’s? Or what can I do?

Thanks StackO.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T20:46:29+00:00Added an answer on May 17, 2026 at 8:46 pm

    The simplest method would be cookie checking.

    A better way would be to create an SQL database and assign the IP address as the primary key. Then whenever a user visits, you would insert that IP into the database.

    1. Create a function included on all pages that checks for $_SESSION['logged'] which you can assign whatever ‘flag’ you want.
    2. If $_SESSION['logged'] returns ‘false’ then insert their IP address into the MySQL database.
    3. Set $_SESSION['logged'] to ‘true’ so you don’t waste resources logging the IP multiple times.

    Note: When creating the MySQL table, assign the IP address’ field as the key.

    <?php 
      session_start();
      if (!$_SESSION['status']) {
        $connection = mysql_connect("localhost", "user", "password");
        mysql_select_db("ip_log", $connection);
    
        $ip = $_SERVER['REMOTE_ADDR'];
        mysql_query("INSERT INTO `database`.`table` (IP) VALUES ('$ip')");
    
        mysql_close($connection);
        $_SESSION['status'] = true;
      }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have code like this in a web based file called 'view_file.php' to
I currently have a .htaccess file set up with this rule: RewriteRule ^([a-zA-Z0-9_-]+)$ user\.php?user=$1
Currently I just have a file like this that I manually parse into a
I currently have an encoded footer file for a wordpress file I want to
I currently have a huge HTML file which doesn't have line breaks and just
I currently have the following Get-ChildItem -recurse -include file.ext | Select-String -pattern c: |
I have a file called: refdes2.php <script> function go(){ window.frames[0].document.body.innerHTML='<form target=_parent action=http://www.site.com/refdes3.php></form>'; window.frames[0].document.forms[0].submit() }
I currently have a file abc.htm in my Custom Server Control Project and it's
I currently have a class file with the following enumeration: using System; namespace Helper
I currently have a csv file that I'm parsing with an example from here:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.