Home >Backend Development >PHP Tutorial > PHP中怎么制作查询报表

PHP中怎么制作查询报表

WBOY
WBOYOriginal
2016-06-13 12:58:511143browse

PHP中如何制作查询报表
数据库:MSD
表:PURTC、PURTD
PURTC中的字段:


PURTD中的字段:


------------------------------条件区-----------------------------------


----------------------------数据显示区----------------------------------


希望可以给出源码,谢谢

------解决方案--------------------
不就是个动态生成查询条件的问题吗?

基础查询指令:
select * from PURTC, PURTD where tc001=td001 and tc002=td002
根据输出要求自行调整

设表单为post方式的,表单对象与字段同名,提交按钮不命名
生成代码
$s = '';
foreach($_POST as $k=>$v) {
  if(! empty($v)) $s .= " and $k='$v'";
}
将 $s 附加在基础指令之后,查询、显示
请自行加入合法性验证代码

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn