table_manage_search.php

来自「程序脚本为PHP+MYSQL」· PHP 代码 · 共 34 行

PHP
34
字号
<?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");
}
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?