我正在尝试为我的工作制作一个时间表网站,我无法弄明白,基本上我的老板制作一张excel表格,显示某些人的工作日期和时间。
e.g。
约会----约翰----马库斯 01.04 --- 08-12 --- 12-18
依旧......
而我正在尝试做的是,在我的MySQL中获取excel文件,然后将其打印到我的网站,但问题是,无论何时我尝试,它都有用,只是它打印文本侧身。
e.g。
约会----约翰----马库斯 01.04 --- 02.04 --- 03.04
它只是将日期横向而不是向下,所以它只会显示月份的所有日期..
这就是我所拥有的。
<table class= "table table-striped table-bordered table-hover">
<thead>
<tr>
<th colspan="1" rowspan="1" style="width: 180px;" tabindex="0">Date</th>
<th colspan="1" rowspan="1" style="width: 220px;" tabindex="0">John</th>
<th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Marcus</th>
</tr>
</thead>
<tbody>
<?php
$query = mysql_query("select * from information");
$i=0;
while($fetch = mysql_fetch_array($query))
{
if($i%2==0) $class = 'even'; else $class = 'odd';
echo'<tr class="'.$class.'">
<td><span class="xedit" id="'.$fetch['id'].'">'.$fetch['date'].'</span></td>
<td>'.$fetch['name'].'</td>
<td>'.$fetch['time'].'</td>
</tr>';
}
?>
</tbody>
</table>