我正在用PHP创建一个用户出勤脚本,我基本上想要的结构如下所示:
或查看我的jsFiddle
<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>
我已经在没有任何数据库交互的情况下动态地工作,并且日期数字与以下代码一起正常工作:
<?php
$startDate = new DateTime();
$endDate = new DateTime('2013-09-31');
$days = array();
for ($c = $startDate; $c <= $endDate; $c->modify('+1 day')) {
echo "<th>".$c->format('d')."</th>";array_push($days,$c); }
?>
由此我扩展到引入数据库交互,因为我想显示数据库中的用户。
以下功能显示了我到目前为止所遇到的问题
1。显示日期的动态函数不会出现在与其他表格标题相同的行上,例如日期在表头名字上方。
我该如何解决这个问题?我没有和桌子一起工作太多,所以我不确定我做了什么工作。有什么想法吗?
public function viewall() {
$sth = $this->db->prepare("SELECT firstname, lastname FROM users");
$sth->execute();
/* Fetch all of the values of the first column */
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
$table = "<form action='' method='post'>
<table>
<th>Firstname</th>
<th>Lastname</th>";
$startDate = new DateTime();
$endDate = new DateTime('2013-09-31');
$days = array();
for ($c = $startDate; $c <= $endDate; $c->modify('+1 day')) {
echo "<th>".$c->format('d')."</th>";array_push($days,$c); }
foreach($result as $row) {
$firstname = $row['firstname'];
$lastname = $row['lastname'];
$table .= "<tr>
<td>$firstname</td>
<td>$lastname</td>
<td><input type='checkbox' name='$firstname' value='Y' /></td>
</tr>
</table></form>";
echo $table;
}
}
答案 0 :(得分:5)
<table>
<th>Member</th>
<th>Day One</th>
<th>Day Two</th>
需要成为
<table>
<tr>
<th>Member</th>
<th>Day One</th>
<th>Day Two</th>
</tr>
答案 1 :(得分:0)
您echo
的日期;你应该把它们连到table
。
答案 2 :(得分:0)
您在回复表格之前回显日期时间
尝试更改此代码:
echo "<th>".$c->format('d')."</th>";array_push($days,$c);
进入这个:
$table.="<th>".$c->format('d')."</th>";array_push($days,$c);