当前位置:首页 > PHP教程 > php应用 > 列表

php限制用户60秒后发布评论实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-17 17:22:29 浏览: 评论:0 
  1. // php限制用户60秒后发布评论实例代码 
  2. /* 
  3. create table `test`.`abc` ( 
  4. `id` int( 4 ) not null auto_increment , 
  5. `times` int( 4 ) not null default '0', 
  6. `ip` varchar( 200 ) null default null , 
  7. primary key ( `id` )  
  8. ) engine = myisam  
  9. */ 
  10. if$_post ) 
  11. {//开源代码phpfensi.com 
  12.  $conn = mysql_connect('localhost','root','root'or die('mysql server 2001'); 
  13.  mysql_select_db('test',$conn); 
  14.  $date = time();  
  15.  $ip = $_server['remote_addr'];//获取ip地址,这是测试所以没作判断了 
  16.  $wait = "select times,ip from abc where ip='$ip' and ($date-times<60) order by id desc limit 1"
  17.   
  18.  $rows = mysql_query($wait ) or die( mysql_error()); 
  19.  if( mysql_num_rows( $rows ) ) 
  20.  { 
  21.   die('坐下来休息一下吧,您的动作太快了,请60秒后再发布你的信息!'); 
  22.  } 
  23.  else 
  24.  { 
  25.     
  26.   $sql = "insert into abc(times,ip) values('$date','$ip')"
  27.   $insert = mysql_db_query('test',$sql,$conn); 
  28.   if$insert ) 
  29.   { 
  30.    echo '评论成功'
  31.   } 
  32.   else 
  33.   { 
  34.    echo '评论失败'
  35.   } 
  36.    
  37.  } 
  38. ?> 
  39. "form1" method="post" action=""
  40.   for="textfield"
  41.   "text" name="phpfensi.com" id="textfield"
  42.   "submit" name="button" id="button" value="发表评论"
  43.  

Tags: php限制用户 发布评论

分享到: