2016-10-04 5 views
0

私はTCPDFライブラリを使用してテーブルのPDFを生成しています。PHP最後の行のみを表示しているループ

表は、行の数数は、その2行のうち10

が同じ請求書番号が「78650」

今私は、請求書番号で、それが持つPDFを生成する必要があり、必要に応じて選択していたと言っています2行

代わりに、最後の行である2番目の行をフェッチするだけです。それはシリアル番号2だけが取られます。以下は

コード:

<?php 
require_once('TCPDF/tcpdf.php'); 
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); 
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED); 
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM); 

if (@file_exists(dirname(__FILE__).'/lang/eng.php')) { 
require_once(dirname(__FILE__).'/lang/eng.php'); 
$pdf->setLanguageArray($l); 
} 
$pdf->SetFont('helvetica', '', 9); 
$pdf->AddPage(); 

$html1 = '<table cellspacing="0" class="table table-striped"> 
<tr> 

<th>SL No.</th> 

<th>Product</th> 
<th>Description</th> 
<th>Qty</th> 
<th>Total</th> 
</tr>'; 

$sql = ("select * from invoice WHERE invoice_no = 78650 ORDER BY invoice_id ASC"); 
$result=mysqli_query($connection,$sql); 
$i = 1; 
while($row = mysqli_fetch_array($result)){ 
$pr = $row['product']; 
$dr = $row['description']; 
$qty = $row['qty']; 
$total = $row['total']; 

$html2 = "<tr> 

<td>".$i."</td>       
<td>".$pr."</td> 
<td>".$dr."</td> 
<td>".$qty."</td> 
<td>".$total."</td> 
</tr>"; 

$i++; } 

$sql_1 = ("select *,SUM(total)as tot from invoice WHERE invoice_no = 78650 GROUP BY invoice_no"); 
$result_1=mysqli_query($connection,$sql_1); 
$row_1 = mysqli_fetch_array($result_1); 
$tot = $row_1['tot']; 
$html3 = "<tr> 
<td></td> 

<td></td> 
<td></td> 
<td>Total: </td> 
<td>".$tot."</td> 
</tr>      
</table>"; 
$html = $html1.$html2.$html3; 
$pdf->writeHTML($html, true, 0, true, 0); 
$pdf->lastPage(); 
$pdf->Output('htmlout.pdf', 'I'); 
?> 
+1

あなたは '$ html2'変数を連結する必要があります。 –

答えて

1

の反復のためにあなたが$html2の内容を交換しているためです。代わりにコンテンツを追加する必要があります。

したがって、変数$html2をループ外に置き、ループを反復するときに結果を追加します。

コードは

$html2=""; 
while($row = mysqli_fetch_array($result)){ 
$pr = $row['product']; 
$dr = $row['description']; 
$qty = $row['qty']; 
$total = $row['total']; 

$html2 = $html2."<tr> 
<td>".$i."</td>       
<td>".$pr."</td> 
<td>".$dr."</td> 
<td>".$qty."</td> 
<td>".$total."</td> 
</tr>"; 

$i++; 

} 
+0

おっと!ありがとうございました..魅力的なように働いた.. –

+0

素晴らしい。問題を解決した場合は正解としてください。 –

+0

完了しました!ありがとう –

1

二フェッチは、変数$ HTML2が上書きされ、次のようになります。 $ html2 [$ i]という配列を使うことができます。

0
$tbl_header = '<table border="1"><tr> 
     <th>FirstName</th><th>LastName</th><th>Gender</th><th>E-Mail</th><th>Mobile</th><th>DateOfBirth</th><th>Country</th><th>State</th><th>City</th><th>Address</th><th>Zipcode</th><th>File</th></tr>'; 
$tbl_footer = '</table>'; 

$tbl = ''; 
while($row = mysqli_fetch_array($result)) 
    { 
$tbl .= ' 
<tr><td>'.$row['firstname'].'</td><td>'.$row["lastname"].'</td><td>'.$row["sex"].'</td><td>'.$row["email"].'</td><td>'.$row["mobile"].'</td><td>'.$row["dob"].'</td><td>'.$row["country"].'</td><td>'.$row["state"].'</td><td>'.$row["city"].'</td><td>'.$row["address"].'</td> 
<td>'.$row["zipcode"].'</td> 
<td><img src="'.$row["file"].'"/></td> 
</tr> 
'; 

} 
//$pdf->writeHTML($html, true, false, true, false, ''); 
$pdf->writeHTML($tbl_header . $tbl . $tbl_footer, true, false, false, false, ''); 
関連する問題