无法添加24小时投票系统?

时间:2012-01-21 10:50:09

标签: php mysql database hour

有一个脚本触发下面的代码

我想禁止每24小时执行一次以上的脚本。

我希望此脚本根据数据库中的用户ID将最后一次访问时间存储在表中,然后进行时间计算并将其退回到24小时到期时间。

有人可以解释一下如何做到这一点吗?如果有人可以帮助我,我将不胜感激吗?

<?php
//Input correct values into this section
$dbhost = '888888';
$dbuser = '888888';
$dbpass = '888888';
$dbname = '888888';
$dbtable = 'redeem';
$dbtable2 = 'playersthatvoted';
//------------------------------------
$input = 'diamond 12';
$player = $_POST['Player'];
$time = time();
if(!isset($_COOKIE['24Hourvote'])){
   //---- This is the connection
   $conn = mysql_connect ($dbhost, $dbuser, $dbpass) or die ('Error: ' . mysql_error());
   mysql_select_db($dbname);
   $query1 = "INSERT INTO `".$dbname."`.`".$dbtable."` (`player`, `item`) VALUES ('".$player."', '".$input."')";
   $query2 = "INSERT INTO `".$dbname."`.`".$dbtable2."` (`player`, `time`) VALUES ('".$player."', '".$time."')";
   mysql_query($query1);
   mysql_query($query2);
   $query= 'SELECT `player` FROM `playersthatvoted` ASC LIMIT 0, 10 ';
   $result = mysql_query($query);
   mysql_close($conn);
   echo 'Done! Type /redeem in-game to get your diamonds.';
   $ip=@$REMOTE_ADDR;
   setcookie ("24Hourvote",$ip,time()+86400,'/',true,…
} else {
   echo 'You have already voted today! Come back later...'; }
?>

编辑:我可以这样做,以便显示用户可以再次投票的剩余时间吗?

2 个答案:

答案 0 :(得分:1)

对我来说,看起来你已经知道你要做什么了:

  

我希望此脚本将上次访问时间存储在表格中   针对数据库中的用户ID。然后执行时间计算和   退出它们直到24小时到期时间。

所以:

  1. 忘了饼干。它存储在客户端,可以操作。
  2. 在计票前,检查当前用户的[lastvisit]字段。
  3. 如果未设置计票,请将表格中的[lastvisit]字段设置为当前日期。
  4. 如果设置,则计算现在和最后一次投票之间的时间跨度。如果超过24小时,请计算投票数并将表格中的[lastvisit]字段设置为当前日期。
  5. 请注意:

    • 操纵参数:$_POST['Player'];
    • SQL注入:VALUES ('".$player."', '".$input."')

    如果您对其中一项任务有疑问,请询问具体问题。

答案 1 :(得分:0)

<?php
//Input correct values into this section
$dbhost = '888888';
$dbuser = '888888';
$dbpass = '888888';
$dbname = '888888';
$dbtable = 'redeem';
$dbtable2 = 'playersthatvoted';
//------------------------------------
$input = 'diamond 12';
$time = time();
if(!isset($_COOKIE['24Hourvote'])){
       $ip = $_SERVER['REMOTE_ADDR'];
   //---- This is the connection
   $conn = mysql_connect ($dbhost, $dbuser, $dbpass) or die ('Error: ' . mysql_error());
   mysql_select_db($dbname);

      // Escape all user entered data always
      $player = mysql_real_escape_string($_POST['Player']);

   // Select time for this player if available
   $query = "SELECT time FROM playersthatvoted WHERE player = '$player' ORDER BY time DESC LIMIT 0, 1";
   $result = mysql_query($query);

   if(mysql_num_rows($result) != 0)
   {
       $row = mysql_fetch_row($result);
       $last_visit = $row[0];
       $vote_allowed_time = $last_visit + 86400; 

       // Allowed to vote
       if($time > $vote_allowed_time)
       {
           // Do whatever else you need to here ...

           setcookie ("24Hourvote",$ip,time()+86400,'/');
       }
       else
       {
           echo 'This player has already voted today! Come back later...';
       }
   }
   else
   {
       $query1 = "INSERT INTO `".$dbname."`.`".$dbtable."` (`player`, `item`) VALUES ('".$player."', '".$input."')";
       $query2 = "INSERT INTO `".$dbname."`.`".$dbtable2."` (`player`, `time`) VALUES ('".$player."', '".$time."')";
       mysql_query($query1);
       mysql_query($query2);
       $query= 'SELECT `player` FROM `playersthatvoted` ASC LIMIT 0, 10 ';
       $result = mysql_query($query);
       mysql_close($conn);
       echo 'Done! Type /redeem in-game to get your diamonds.';

       setcookie ("24Hourvote",$ip,time()+86400,'/');
   }
} else {
   echo 'You have already voted today! Come back later...'; }
?>

注意:永远不要相信用户输入,始终验证并转义数据。

已更改:

$player = $_POST['Player'];

为:

$player = mysql_real_escape_string($_POST['Player']);

添加了:

 // Select time for this player if available
 $query = "SELECT time FROM playersthatvoted WHERE player = '$player' ORDER BY time DESC LIMIT 0, 1";
 $result = mysql_query($query);


if($result)
   {
       $row = mysql_fetch_row($result);
       $last_visit = $row[0];
       $vote_allowed_time = $last_visit + 86400; 

       // Allowed to vote
       if($time > $vote_allowed_time)
       {
           // Do whatever else you need to here ...

           setcookie ("24Hourvote",$ip,time()+86400,'/');
       }
       else
       {
           echo 'This player has already voted today! Come back later...';
       }
   }
   else
   {
       ...
   }

<强>更新

我想强调的是,现在任何人都可以输入玩家名称并尝试投票,这并不一定意味着点击投票按钮的同一用户。

此外,IP地址不会用于任何目的,可能会将其用于进一步的权限/安全检查。