FPDFに問題があります.Phpmyadminを使用しているときにSQLクエリが行うすべての結果を返すWhileループを作成したいのですが、 。私が使用している場合
$ pdf-> Cell(190,10、 ''。$ pdf_info2 ['format']。 ''、1,1,0); それは私が望む結果を印刷しますが、以下に示すようにテーブルに戻す必要があります。 Ps:これは私のfirtsの質問ですので、私は私の問題を明確にしていない場合は私はappolagise。事前FPDFのループでは1つの結果しか出力されません。
$html='<table border="0">
<tr>
<td width="150" height="40" bgcolor="#e6e6e6">Tipo</td>
<td width="150" height="40" bgcolor="#e6e6e6">Formato</td>
<td width="150" height="40" bgcolor="#e6e6e6"> </td>
<td width="150" height="40" bgcolor="#e6e6e6">Pago</td>
<td width="150" height="40" bgcolor="#e6e6e6">Editar</td>
</tr>';
while($pdf_info2 = $smth->fetch(PDO::FETCH_ASSOC)) {
$html2 = '<tr>
<td width="150" height="40" bgcolor="#e6e6e6">'.$pdf_info['format'].'</td>
<td width="150" height="40" bgcolor="#e6e6e6">.$pdf_info['format'].</td>
<td width="150" height="40" bgcolor="#e6e6e6">.$pdf_info['format'].</td>
<td width="150" height="40" bgcolor="#e6e6e6">.$pdf_info['format'].</td>
<td width="150" height="40" bgcolor="#e6e6e6">.$pdf_info['format'].</td>
</tr>';
}
$pdf->WriteHTML($html);
$pdf->WriteHTML($html2);
'$のHTML2になります。='そのドットを参照してください。 '='の前に? –
'$ pdf_info ['format']'は '$ pdf_info2 ['format']'でなければなりません。 –