以下從this question現在我需要風格的輸出只發現PHP不喜歡我的標籤的方式我也試圖封裝它在"
和.
或<?php $row['field'] ?>
但仍然沒有工作。
<table class="table table-hover">
<caption>List All Customers from Customer Table</caption>
<thead>
<tr>
<th>id</th>
<th>Inital</th>
<th>First Name</th>
<th>Last Name</th>
<th>Mobile</th>
<th>Landline</th>
<th>Email</th>
<th>Address</th>
<th>Post Code</th>
</tr>
</thead>
<tbody>
<tr>
<?php
foreach ($rows as $row) {
?>
<td><?php $row['clientid']; ?></td>
<td><?php $row['inital']; ?></td>
<td><?php $row['firstname']; ?></td>
<td><?php $row['lastname']; ?></td>
<td><?php $row['mobile']; ?></td>
<td><?php $row['landline']; ?></td>
<td><?php $row['email']; ?></td>
<td><?php $row['address']; ?></td>
<td><?php $row['postcode']; ?></td>
<?php } ?>
</tr>
</tbody>
</table>
它不起作用,顯示沒有結果。 :(拉頭髮出的替代問題,看了,但北距不夠清晰
變量之前剛寫'echo'。 – vikingmaster 2013-02-17 00:19:18
'
你定義$行作爲一個空數組....所以爲什麼你希望當您回聲它顯示的東西嗎? – 2013-02-17 00:37:34