0
我有問題環路TCPDF..The輸出的數據應該是這樣的while循環TCPDF
輸出顯示:
Chair x 3
Table x 5
LCD X 2
但現在輸出只顯示:Chair x 3
它只顯示第一條記錄。任何人都可以解釋 如何根據上面的輸出循環數據?
$result_1=mysql_query($query_1);
while($row1=mysql_fetch_array($result_1)){
$item = $row1['item'];
$qty = $row1['SUM(qty)'];
$data = $item.' x '.$qty;
$tbl.='<td align="center">'.$data.'</td>';
$data='';
}
$tbl.='</tr>';
}
This picture output I get based on coding above
你在覆蓋你的字符串在循環 – 2016-08-19 04:51:25
對不起,我不明白你的意思..你可以爲我示例嗎? – miss
即時工作的即時通訊錯誤 – 2016-08-19 05:34:56