search
HomeBackend DevelopmentPHP TutorialPHP realizes the statistics of IP and PV contributed by daily outbound connections from this website to the target website_PHP Tutorial

Save to database:

header("Content-type: text/html; charset=utf-8");
//echo $_COOKIE['iptag'];
date_default_timezone_set('PRC');
//Target website url
$aimUrl = $_GET['r'];
//Source website
$sourceUrl = $_GET['wangzhan'];
//Set the cookie identifier to prevent users from clicking on other links after the cookie is generated, resulting in inaccurate statistics
$cookieTag = $aimUrl.$sourceUrl;
//Time stamp at 0:00 tomorrow
$nonce_time = strtotime(date('Ymd')+1);
setcookie('iptag',$cookieTag,$nonce_time);
//Get the current time for database query
$time = date('Y-m-d');
$db = new MySQLi('localhost','a','acyr','www_a_com');
if ($mysqli->connect_errno) {
die('Database connection failed:'.$mysqli->connect_error);
}
$db->query('set names utf8');
$sql = "select * from dede_tongji where sourceUrl='$sourceUrl' and aimUrl='$aimUrl' and date='$time'";
$res = $db->query($sql); www.2cto.com
//First check whether there is data for this link in the current database on this day. If not, create it. Otherwise, use the cookie value to determine how much the IP and Pv have increased respectively.
if ( $row = $res->fetch_assoc() ){
$pvSum = $row['pvSum'] + 1;
if( $_COOKIE['iptag'] == $cookieTag ){
                $sql = "update dede_tongji set pvSum = '$pvSum' where sourceUrl='$sourceUrl' and aimUrl='$aimUrl' and date='$time' ";
$db->query($sql);
                                                                       
//Otherwise just ip and pv increase by one
}else{
$ipSum = $row['ipSum'] + 1;
                  $sql = "update dede_tongji set ipSum = '$ipSum',pvSum = '$pvSum' where sourceUrl='$sourceUrl' and aimUrl='$aimUrl' and date='$time' ";
$db->query($sql);
} }
                                                                       
}else{
//If there is no data in the database, add a new piece of data
$sql = "insert into dede_tongji (sourceUrl,aimUrl,ipSum,pvSum,date) values ​​('$sourceUrl','$aimUrl',1,1,'$time')";
if( $db->query($sql)){
}else{
$db->error;
} }
}
//Use js to achieve jump
echo "";
?>
Querying from the database, a paging class is used here. You can find it in my Lingyiyi blog. The usage of this paging class can be well understood by combining this example and the member functions of the paging class. It is mainly in progress. When querying the database, just add limit conditions to the sql statement. The paging class used is: page.class.php
The following is the use of querying front-end display data and paging classes from the database, as well as some js for controlling dates
header("Content-type: text/html; charset=utf-8");
date_default_timezone_set('PRC');
//Introduce paging class
require_once 'page.class.php';
//Get variables
$wangzhan = emptyempty($_GET['wangzhan']) ? '' : $_GET['wangzhan'];
//If the month and day are less than 10, add 0 for database date matching
$mm = $_GET['MM'];
$dd = $_GET['DD'];
if( $mm
$mm = '0'.$mm;
}
if( $dd
$dd = '0'.$dd;
}
$date = $_GET['YYYY'].'-'.$mm.'-'.$dd;
//echo $date;
//$time = date('Y-m-d');
//echo 'time:'.$time.'
';
//echo $date;
//exit();
//Connect to database
$db = new MySQLi('localhost','a','acyr','www_a_com');
if ($mysqli->connect_errno) {
die('Database connection failed:'.$mysqli->connect_error);
}
$db->query('set names utf8');
//If the current query date is the current date, output all and sort by date
if($date==$time){
//Get the total number of items in this case for paging display (this parameter is used for paging class)
$sql = "select count(*) from dede_tongji where sourceUrl='$wangzhan' order by date desc";
$row = $db->query($sql)->fetch_row();
$allRows = $row[0]; //Total number of items
$pageList = new Page($allRows,2,4,array('pre'=>'Previous page','next'=>'Next page'));
//$res = $db->query( "select * from dede_tongji where sourceUrl='$wangzhan' order by date desc {$pageList->limit()}" );
$sql = "select * from dede_tongji where sourceUrl='$wangzhan' order by date desc {$pageList->limit()}";
//echo $sql;
$res = $db->query($sql);
$resArr = array();
while( $row = $res->fetch_assoc()){
$resArr[] = $row;
} }
$res->free_result();
/*echo '
'; 
var_dump($resArr);
foreach( $resArr as $v ){
echo $v['aimUrl'];
}*/
//print_r($res);
//exit();
}else{
//Get the total number of items in this case for paging display
$sql = "select count(*) from dede_tongji where sourceUrl='$wangzhan' and date='$date'";
$row = $db->query($sql)->fetch_row();
$allRows = $row[0]; //Total number of items
$pageList = new Page($allRows,2,4,array('pre'=>'Previous page','next'=>'Next page'));
$sql = "select * from dede_tongji where sourceUrl='$wangzhan' and date='$date' {$pageList->limit()} ";
//echo $sql;
$res = $db->query($sql);
        $resArr = array();  
        while( $row = $res->fetch_assoc()){  
                $resArr[] = $row;  
        }  
        $res->free_result();  
        //print_r($res);  
        //exit();  
    }  
 
?>  
 
 
 
 
统计结果  
/*头部样式*/ 
.top {  
    margin-right: auto;  
    margin-left: auto;  
    width: 800px;  
    margin-top: 100px;  
}  
/*表格样式*/ 
table td{  
    border:1px solid #999;  
    padding:0px 5px;  
}  
 
/*分页样式*/ 
.pagelist{  
    margin-right: auto;  
    margin-left: auto;  
    width: 800px;  
    margin-top: 30px;  
}  
.pagelist a{  
    text-decoration:none;  
    display:block;  
    height:auto;  
    width:auto;  
    float:left;  
    padding:1px 6px;  
    color:#333;  
    margin-right:5px;  
    text-align:center;  
    border:1px solid #CCC;  
}  
.pagelist a:hover{  
    color:#F63;  
}  
.pagelist .alink{  
    text-align:center;  
    width:20px;  
}  
.pagelist strong{  
    text-decoration:none;  
    display:block;  
      
      
    float:left;  
      
    text-align:center;  
    width:20px;  
    padding:1px 6px;  
    border:1px solid #CCC;  
    margin-right:5px;  
    color:#FFF;  
    background:#666;  
}  
.pagelist .sel{  
    width:40px;  
}  
 
 
 
 
 
 
<script>  </script>
 
 
 
统计网站:
                 
                 
                 
                                                                                                                                                                                                                                                 
                                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                               
                                                                                                                                                                                                                                       
                                                                                                                                                     
Inquiry date:
                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                                             
                                                                                             
                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                                     
                                                                                             
                                                                                                       
                                                                                                                                                                                                                                                                                     
                                                                                             
Statistical website Outbound connection IP (independent) PV Date
if( $wangzhan != '' && isset($resArr[0])){
echo $pageList->pre(); echo $pageList->first();echo $pageList->strList();
echo $pageList->end();echo $pageList->next();
echo "  Please choose to jump to page: ";echo $pageList->selectList().';
}
?>
Finally, there is the structure of the database table, so that there is only one table with some small errors in the pv record, because the time here is mainly controlled by cookies, so there are errors. If there are experts, you can optimize the database design and use IP to Control, limited ability, please forgive me:
CREATE TABLE `dede_tongji` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sourceUrl` varchar(255) NOT NULL, `aimUrl` varchar(255) NOT NULL, `ipSum` int(10) unsigned NOT NULL, `pvSum` int(10) unsigned NOT NULL, `date` date NOT NULL,

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477856.htmlTechArticleSave to database: ?php header(Content-type: text/html; charset=utf-8); / /echo $_COOKIE[iptag]; date_default_timezone_set(PRC); //Target website url $aimUrl = $_GET[r]; //Source website...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.