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

Web服务器

开发平台:

PHP

  1. <?php
  2. session_start();
  3. include("checks.php");
  4. include("../inc/conn.php");
  5. if(isset($_GET["agent"]))
  6. {
  7.  $super_agent=$_GET["agent"];
  8. $_SESSION["super_agent"]=$super_agent;
  9. }else $super_agent=$_SESSION["super_agent"];
  10. $bill_type=$_SESSION["bill_type"];
  11. $down_type=$_SESSION["down_type"];
  12. if($down_type=="all") $down_types="????";
  13. $start_time=$_SESSION["start_time"];
  14. $end_time=$_SESSION["end_time"];
  15. $date_num=$_SESSION["date_num"];
  16. if($bill_type=="1")
  17. {
  18.  include("table_super.php");
  19. }elseif($bill_type=="2")
  20. {
  21.  include("table_class.php");
  22. }
  23. ?>