スタッフ名、月、注文などを含む小さなテーブルの結果を表示するバックエンドのあるphp
ページを作成しました。mysql
<table border="1" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Month</th>
<th scope="col">Cases</th>
</tr>
</thead>
<?php do { ?>
<tbody>
<tr>
<td><?php echo $row_rsChart2['ContactFullName']; ?></td>
<td><?php echo $row_rsChart2['Month']; ?></td>
<td><?php echo $row_rsChart2['Cases']; ?></td>
</tr>
</tbody>
<?php } while ($row_rsChart2 = mysql_fetch_assoc($rsChart2)); ?>
</table>
月の列をヘッダーとして使用して、1 月、2 月、3 月などを列ヘッダーに左から右に表示し、各月のケースをデータとして表示することは可能ですか?
1月 - 2月 - 3月 ユーザー1 100 47 89 ユーザー2 86 67 134
デフォルトのレイアウトでは、次のように表示されます。
名前 - 月 - ケース User1 100 年 1 月 ユーザー1 2月47日 User2 1967 年 1 月