嘿伙计们,我回来了,我觉得我在代码中犯了一个非常愚蠢的错误,但我似乎找不到它。我要做的是将从 mysql 表中检索到的数据拆分为 html 表中的两列。到目前为止,我得到了它的工作......有点。我遇到的问题是数据不断复制到表中的两行,而不是每个单元格中的单个条目。我用谷歌搜索并搜索了这些表格,似乎看不到我在哪里犯了错误。下面是代码
// Build the table
echo '
<table>
<tr>
';
// Build the headers
for ($x = '1'; $x <= '2'; $x++)
echo '
<td>Truck</td>
<td>Home Base</td>
<td>Client</td>
<td>Job Details</td>
<td>Crew</td>
';
// Close off headers
echo '</tr>';
// Fetch the table contents if the rigs are active
while($row = mysqli_fetch_array($truck_full_query)) {
for ($y = '1'; $y <= '1'; $y++):
echo '<tr>';
for ($z = '1'; $z <= '2'; $z++):
echo '<td>' . $row['model'] . ' #' . $row['position'] . '<br>' . $row['unit_number'] . '</td>';
echo '<td>' . $row['dispatch_location'] . '</td>';
// Get client information
echo '<td> </td>';
// Get Job Details
echo '<td> </td>';
// Get Crew
echo '<td> </td>';
endfor;
echo '</tr>';
endfor;
}
// Close table
echo '</table>';