我想使用PHP MysqL甚至一个小的jQuery创建一个考勤系统.我想到的规范是让我的所有成员都在一个表行中回显,而在其余表中,我希望有一个无限的日期数组,但逐月显示.
我只是想知道如何动态地将每月的某天放入该表?
有没有人有任何可行的例子或为我指明了正确的方向?
<form action='this_page.PHP' method='post'>
<table>
<th>Member</th>
<th>Day One</th>
<th>Day Two</th>
<tr>
<td>Memeber One</td>
<td><input type='checkBox' name='student[davidsmith]' value='1' /></td>
<td><input type='checkBox' name='student[davidsmith]' value='1' /></td>
</tr>
<tr>
<td>Member Two</td>
<td><input type='checkBox' name='student[davidsmith]' value='1' /></td>
<td><input type='checkBox' name='student[davidsmith]' value='1' /></td>
</tr>
</table>
</form>
解决方法:
不是100%地确定您想要什么,但是要获得一个月的日子,可以使用PHP的DateTime
例如
$startDate = new DateTime(); //today
$endDate = new DateTime('2013-12-31');
for ($c = $startDate; $c <= $endDate; $c->modify('+1 day')) {
echo $c->format('d');
}
将打印从今天到该年剩余时间的日期,请使用-> format(‘N’)获取月份名称. check here用于format()接受的其他参数