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.