我有一个 PHP 函数,可以从数据库中提取发票的数据。
发票可能不止一行(一种产品)。
function getInvoiceLines($id)
{
$res = mysql_query("select * from invoice_lines where id = $id ");
while ($row = mysql_fetch_array($res))
{
$res_retun['ref']=$row['ref'];
$res_retun['label']=$row['label'];
$res_retun['price']=$row['label'];
$res_retun['qty']=$row['qty'];
}
return $res_retun ;
}
我找到了这个链接Create a Multidimensional Array with PHP and MySQL,我使用这个概念制作了这段代码。
现在,如果 MySQL 结果中有更多行,我如何将光标之类的东西移动到下一行并添加更多行?
如果可能的话,我该怎么做才能用 for 显示 HTML 中的数据?