drate_right_num_check.php
上传用户:m68239277
上传日期:2014-10-12
资源大小:824k
文件大小:1k
源码类别:

Web服务器

开发平台:

PHP

  1. <?php
  2. session_start();
  3. include("checks.php");
  4. include("../inc/conn.php");
  5. $_SESSION["menus"]="修改默认赔率";
  6. $user=$_SESSION["user"];
  7. $downdate=$_SESSION["downdate"];
  8. $minrmb=0.01;
  9. $maxrmb=1000;
  10. $check=@$_POST["check"];
  11. $list=split(",",$check);
  12. function outscript($arr)
  13. {
  14.  echo "<script language='javascript'>".$arr."</script>";
  15. }
  16. for($i=0;$i<count($list)-1;$i++)
  17. {
  18.  $p="t".$list[$i];
  19.  $txt=@$_POST[$p];
  20.  $rmb_count+=$txt;
  21. }
  22. if($rmb_count==""||$rmb_count==0) outscript("alert('请输入赔率数额!');history.back(1);"); 
  23. for($i=0;$i<count($list)-1;$i++)
  24. {
  25. $p="t".$list[$i];
  26. $txt=@$_POST[$p];
  27. if($txt<>"")
  28.  {
  29.   if($txt<$minrmb)
  30.   { 
  31.    outscript("alert('赔率最低限额为 ".$minrmb."');history.back(1);");
  32.   }elseif($txt>$maxrmb)
  33.   {
  34.   echo outscript("alert('赔率最高限额为 ".$maxrmb."');history.back(1);");
  35.   }else
  36.   {
  37.   if(substr($txt,0,1)=="0") $txt=substr($txt,1,strlen($txt));
  38.  $sql=mysql_query("select * from num where sign='1' and num='$list[$i]' order by id asc",$conn);
  39.  $rate=mysql_result($sql,0,"rate");
  40.  $droprate_t.=$rate.",";
  41. $tmoney.=$txt.",";
  42.   }
  43.  }
  44.  }
  45.  if(isset($check))   
  46.  {
  47.    $drop_number_t=$check;  
  48.    $drop_money_t=$tmoney;
  49.    $a_t=split(",",$drop_number_t);
  50.    $d_t=split(",",$drop_money_t);
  51.     for($i=0;$i<count($a_t)-1;$i++)
  52.     {
  53.       mysql_query("update num set rate='$d_t[$i]' where num='$a_t[$i]' and sign='3'",$conn);
  54.     }
  55.  } 
  56.  echo outscript("window.location.href='rate_right_num.php?menu=3'");  
  57. ?>