我想得到:
报价:
报价 1
报价来源 1
报价 2
报价来源 2
我目前得到:
报价:
报价 1
报价来源 1
报价:
报价 2
报价来源 2
对我有用的最终代码:
echo ("<table border='1'>");
$header_printed = false;
while($row = mysql_fetch_array($rs)) {
if ($row['quote']) {
if ($header_printed === false) {
echo "
<tr>
<th>Quotes:</th>
</tr>";
$header_printed = true;
}
echo "
<tr>
<td>".$row['quote']."</td>
<td>".$row['quote_source']."</td>
</tr>";
}
}
echo ("</table>");