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

Web服务器

开发平台:

PHP

  1. <?
  2. $minrmb=5;
  3. $maxrmb=2000;
  4. $check=@$_POST["check"];
  5. $list=split(",",$check);
  6. function outscript($arr)
  7. {
  8.  echo "<script language='javascript'>".$arr."</script>";
  9. }
  10. for($i=0;$i<count($list)-1;$i++)
  11. {
  12.  $p="t".$list[$i];
  13.  $txt=@$_POST[$p];
  14.  $rmb_count+=$txt;
  15. }
  16. if($rmb_count==""||$rmb_count==0) outscript("alert('请输入下注金额!');history.back(1);"); 
  17. for($i=0;$i<count($list)-1;$i++)
  18. {
  19. $p="t".$list[$i];
  20. $txt=@$_POST[$p];
  21. if($txt<>"")
  22.  {
  23.   if($txt<$minrmb)
  24.   { 
  25.    outscript("alert('单注最低限额为 ".$minrmb."');history.back(1);");
  26.   }elseif($txt>$maxrmb)
  27.   {
  28.   echo outscript("alert('单注最高限额为 ".$maxrmb."');history.back(1);");
  29.   }else
  30.   {
  31.   if(strchr($txt,"0")) $txt=substr($txt,1,strlen($txt));
  32.   echo $list[$i]."--".$txt."<br>"; //data
  33.   }
  34.  }
  35. }
  36. ?>