我用简单的表格使用php生成了pdf文件。现在我想使用while循环在table-1的单个Cell中创建另一个table-2。我从数据库中获取记录。在下图中,虚线是表-2,大表是表-1。 我想看起来像 -
____________________________________
| |-------|----------|-------|
| |-------|----------|-------|
| |-------|----------|-------|
| |-------|----------|-------|
| |-------|----------|-------|
| |-------|----------|-------|
-----------------------------------|
先谢谢。
$rt6=@mysql_query("SELECT * FROM proforma_invoice WHERE pro_invoice_id NOT IN (SELECT proforma_ref_id FROM tax_invoice)
order by pro_invoice_id desc");
while($row=@mysql_fetch_array($rt6))
{
$this->Cell(20,6,$dateColumn,1);
$this->Cell(20,6,$row['proforma_invoice_no'],1);
$req=@mysql_query("select * from proforma_details where pro_ref_id='".$row['pro_invoice_id']."'");
while($req1=@mysql_fetch_array($req))
{
$this->Cell(30,6,$i,1);
$this->Cell(30,6,'-',1);
$this->Cell(30,6,'-',1);
$i++;}
$this->Ln();
}