I would like to count the amount of unique visitors a players profile would get.

Each player has a profile and there are many players.

If player1 visits player2's profile I want it to + 1 on player2's profile. If player1 visits player2's profile again, I only want it to + 1 again if 12 hours have passed.

MySQL can be used.

Hope you can understand what Im saying.

Thank you for your time.

link|improve this question

50% accept rate
we understand what you are saying, but you need to provide more details on what have you done so far. such as how do you keep track of profile visits? are they public? – DarthVader Feb 1 at 3:00
We also need to see what code you have so far - nobody is going to create the code for you, you have to put some effort into it. – Francis Feb 1 at 3:00
feedback

closed as not a real question by Michael Petrotta, nickb, animuson, Jakub, hakre Feb 1 at 15:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

You can do this by just doing a simple check (I am going to assume here that user is logged in and we identify them by a userid, and we have a mysql table called 'visits')

Below is simple php / pseudo code as the INSERT & SELECT statements are very basic things to know.

<?php

function checkIfUserVisited($user, $profile){
   // $user & $profile are numeric ids for user accounts in DB.
   // run our db connection here
   $timeago = strtotime('-12 hours');
   $sql = "SELECT entryid from visits WHERE visitor = ".$user." AND profile = ".$profile." AND visitdate > '".$timeago."'";
   // count number of rows 
   if(row count > 0){
      return true;
   }
   return false; //if no rows, means no entry
}

function countVisitor($userToInsert, $profile){
   // do database conncetion
   $sql = "INSERT INTO visits VALUES (...." // simple insert statement to count the unique visit.
}

// here is the actual process to check for existing visits

if(!checkIfUserVisited($current_user, $viewed_profile_id)){
   // checkIfUserVisited() returns true if found in the past 12 hours
   // otherwise, it returns false, and we run an insert for a visit
   countVisitor($current_user, $viewed_profile_id);   
}

That should be sufficient to get you started.

link|improve this answer
Thanks for the reply. But why would the time be -12 hours rather than just 12? – Sami Dz Hamida Feb 1 at 3:23
1  
because strtotime is calculating the current timestamp minus 12 hours – Kai Qing Feb 1 at 3:50
@SamiDzHamida, reason its -12hrs is because you wanted "check if visitor is WITHIN 12 hours", ie, don't count someone if they were here 12 hours ago, hence we look back exactly 12 hours from THIS visit. – Jakub Feb 1 at 14:09
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.