table_manage_search.php
资源名称:Nsix.rar [点击查看]
上传用户:m68239277
上传日期:2014-10-12
资源大小:824k
文件大小:1k
源码类别:
Web服务器
开发平台:
PHP
- <?php
- session_start();
- include("checks.php");
- include("../inc/conn.php");
- if(isset($_POST["act"]))
- {
- $bill_type=@$_POST["bill_type"];
- $down_type=@$_POST["down_type"];
- if($down_type=="all") $down_types="全部种类";
- $start_time=@$_POST["start_time_y"]."-".@$_POST["start_time_m"]."-".@$_POST["start_time_d"]." 00:00:01";
- $end_time=@$_POST["end_time_y"]."-".@$_POST["end_time_m"]."-".@$_POST["end_time_d"]." 23:59:59";
- $date_num=@$_POST["date_num"];
- $_SESSION["bill_type"]=$bill_type;
- $_SESSION["down_type"]=$down_type;
- $_SESSION["start_time"]=$start_time;
- $_SESSION["end_time"]=$end_time;
- $_SESSION["date_num"]=$date_num;
- }else
- {
- $bill_type=$_SESSION["bill_type"];
- $down_type=$_SESSION["down_type"];
- $start_time=$_SESSION["start_time"];
- $end_time=$_SESSION["end_time"];
- $date_num=$_SESSION["date_num"];
- }
- if($bill_type=="1")
- {
- include("table_manage.php");
- }elseif($bill_type=="2")
- {
- include("table_class_bill.php");
- }
- ?>