Home > Backend Development > PHP Tutorial > php如何生成动态的表格,表头和数据都是动态的?

php如何生成动态的表格,表头和数据都是动态的?

WBOY
Release: 2016-06-23 13:05:00
Original
1230 people have browsed it

比如说我按时间查询,从7月1日到7月3日,表头就是7.1|7.2|7.3这样的,这个要怎么做??


回复讨论(解决方案)

头像是本人否

怎么没有人回复呀

<?php	$stime=strtotime('2013-7-1');	$otime=strtotime('2013-7-3');	$i=0;	$arr=array();	for($i=$stime;$stime<=$otime;$stime=$stime+86400)	{		 $arr[]=date('m.d',$stime);	}	$new_arr=implode($arr,'|');	print_r($new_arr);?>
Copy after login

07.01|07.02|07.03
52期李勃然?

对呀,晕  你怎么知道的

对呀,晕  你怎么知道的


靠 看来都是从培训机构里出来的

对呀,晕  你怎么知道的

小妹妹 你被你家老师逮住了


对呀,晕  你怎么知道的


靠 看来都是从培训机构里出来的
莫非你也是?



对呀,晕  你怎么知道的


靠 看来都是从培训机构里出来的
莫非你也是?  我安博的。你是?兄弟连?




对呀,晕  你怎么知道的


靠 看来都是从培训机构里出来的
莫非你也是?  我安博的。你是?兄弟连?
额,这头像应该是他女朋友,你别看见可爱妹子,就hold不住,哈哈





对呀,晕  你怎么知道的


靠 看来都是从培训机构里出来的
莫非你也是?  我安博的。你是?兄弟连?
额,这头像应该是他女朋友,你别看见可爱妹子,就hold不住,哈哈
靠 玩蛋 我以为是妹子。你们是哪个培训机构的?

问题没有解决

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template