Answer the question
In order to leave comments, you need to log in
How to make unique views of articles by IP address?
Here is the query
///Function to view news, video and photo
function views($table, $title){
db_connect();
$query = sprintf(" SELECT views FROM $table WHERE $table.title_url = '%s' ",
mysql_real_escape_string($title));
$result = mysql_query($query);
$row = mysql_fetch_array($result);
$views = $row['views']+1;
mysql_query(" UPDATE $table SET views='$views' WHERE $table.title_url = '$title' ");
}
I want the views to not be read each time the user clicks.
At least views were not read when updating the page of a particular article.
Answer the question
In order to leave comments, you need to log in
Find out the user's IP:
if (!empty($_SERVER['HTTP_CLIENT_IP'])){
$ip = $_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
else{
$ip = $_SERVER['REMOTE_ADDR'];
}
$query = mysql_query("SELECT `ip` from `table` where `ip` = '$ip'");
mysql_fetch_array($query);
if(isset($query['ip'])){
// Если ip есть, то не засчитываем
}else{
// Иначе засчитываем посещение и делаем sql запрос для увеличение счетчика
}
In cookies, write down the id of the articles that a specific user has viewed, and not just from one ip, since several people can come from one ip. If the cookie contains the id of the current article, then do not add the counter. Since the user will look at a lot of articles, the value in the cookie should be written as an id array. view = (2, 16, 27, ...)
As I understand it, you need to create a separate table that will store a list of IP addresses.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question