欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php 广告点击统计代码(php+mysql)

程序员文章站 2022-07-10 20:03:00
php 广告点击统计代码,昨天晚上有几个idc网想与本站合作放些广告,但是我想看看广告效果后想了就写了一个简单的广告统计代码了,这里只是等的统计不能ip限制或是恶心点击等等...

php 广告点击统计代码,昨天晚上有几个idc网想与本站合作放些广告,但是我想看看广告效果后想了就写了一个简单的广告统计代码了,这里只是等的统计不能ip限制或是恶心点击等等了.

先来创建数据库.

create table if not exists `ad_count` (
`ad_id` int(8) not null auto_increment,
`ad_hit` int(8) not null default '0',
`ad_name` varchar(200) character set gb2312 default null,
`ad_datetime` datetime default null,
`ad_qq` varchar(15) character set gb2312 default null,
`ad_url` varchar(900) character set gb2312 not null,
`ad_price` int(8) not null,
primary key (`ad_id`)
) engine=innodb default charset=latin1 auto_increment=4 ;

数据创建好了我们就开始写程序了.数据连接我不不写了,

<?php
 require_once("......省了");
 $ad_id =get_value('ad_id','');这里下面有讲
 if(is_numeric( $ad_id ) ){
 
  $ad_select="select ad_id,ad_url from ad_count where ad_id='$ad_id' limit 1";  
  $ad_update="update ad_count set ad_hit=ad_hit+1 where ad_id='$ad_id' limit 1";
  
  $ad_result=mysql_query($ad_select) or die('id error');
  
   if( mysql_num_rows( $ad_result) ){   
    mysql_query($ad_update);    
    $ad_rs=mysql_fetch_array($ad_result);    
    header("location:".$ad_rs['ad_url']);    
    mysql_free_result($ad_rs);       
   }
 }

function htmltohtml($str){
 $temp =str_replace(chr(13),'<br/>',$str);
 $temp =str_replace('<','<',$str);
 $temp =str_replace('>','>',$str);
 $temp =addslashes($str);
 return $temp;
 }
 function get_value($value,$para){ 
 return htmltohtml(empty($para)?(isset($_get[$value])?$_get[$value]:''):(isset($_post[$value])?$_post[$value]:''));
 }

然后我们再在要显示广告的地方如下写.

<a href=/cp/ad_count.php?ad_id=2 target=_blank><img src=/ad_a/ad2.gif border=0 /></a>

就完了