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 8641689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:35:31+00:00 2026-06-12T11:35:31+00:00

I made a php script to counts the number of users have viewed my

  • 0

I made a php script to counts the number of users have viewed my website’s pages. This is my code

<?php   
    require_once ('test.php');

    $institute_id = 14;

    $q = "INSERT INTO page_views2 ( institute_id, views) VALUES ( $institute_id, 1)
         ON DUPLICATE KEY UPDATE views=views+1"
         ; 
    $r = mysqli_query ($dbc, $q);

?>

I added this to top of my webpages and this is working (views incrementing) properly when I open the pages. But my problem is When I refresh the page, page views is incrementing by 1. It is okey when it is open first time. But I want to avoid from this when someone is refreshing the page.

so can any body tell me how can I do this?

  • 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-06-12T11:35:33+00:00Added an answer on June 12, 2026 at 11:35 am

    Use sessions?

    require_once ('test.php');
    
    $institute_id = 14;
    
    //if no such session exists, assume that its their first time viewing.
    if(!isset($_SESSION[$institute_id.'_v'])){
    
        //insert
        $q = "INSERT INTO page_views2 ( institute_id, views) VALUES ( $institute_id, 1)
             ON DUPLICATE KEY UPDATE views=views+1"
             ; 
        $r = mysqli_query ($dbc, $q);
    
        //set session variable saying they've viewed this institutions page.
        $_SESSION[$institute_id.'_v'] = 1;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The html of this script is made with list items http://www.jeremymartin.name/projects.php?project=kwicks Where can I
I have a contact form made with php on my website. The problem is
I have made a generic PHP script to use for an AJAX call. I
I have several divs, which are made automatically by php script. Each div have
I have this php code: <?php if(!file_exists('counter.txt')){ file_put_contents('counter.txt', '0'); } if($_GET['click'] == 'yes'){ file_put_contents('counter.txt',
I have a PHP script which users submit a post and saves in to
i've made a php search engine a while ago and now i have this
I've been following this tutorial to learn php so I have a html script:
I made a PHP script to send HTTP requests on a website. Everything works
Hello I have made a PHP script for wordpress that insert new posts using

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.