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

Web服务器

开发平台:

PHP

  1. <?php
  2. session_start();
  3. include("../inc/conn.php");  //正码16
  4. $plate=$_SESSION["type"];
  5. $sql=mysql_query("select * from num where sign='4' order by id asc",$conn);
  6. $i=1;
  7.  while($row=mysql_fetch_array($sql))
  8.    {
  9.     $rateh=0;
  10.     $rateh=$row["rate"];
  11.     if($plate=="A") $ratey=$rateh;
  12.     if($plate=="B") $ratey=$rateh-0.01;
  13. if($plate=="C") $ratey=$rateh-0.02;
  14.    $rate[$i]=$ratey;
  15.    $id[$i]=$row["ID"];
  16.    $m[$i]=$row["m"];
  17.    $i++;
  18.    }
  19. ?>
  20. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  21. <meta http-equiv="refresh" content="20;URL=">
  22. <?php
  23.  for($a=1;$a<=54;$a++)
  24.  {
  25.   echo "<input name='id".$a."' type='hidden' value='".$id[$a]."'>";
  26.  //echo "<input name='m".$a."' type='hidden' value='".$m[$a]."'>";
  27.   echo "<input name='z".$a."' type='hidden' value='".$rate[$a]."'>";
  28.  }
  29.  ?>