Hi
If I use the regular PHP:
It freaks out at me and the PDF won't write at all.
how to write $unser value in pdf?
If I use the regular PHP:
Code:
while($row = mysql_fetch_array($result)) { $html = '<table><tr><td>'; echo $row['title']; $html .= '</td></tr></table>'; $mpdf->WriteHTML($html); $mpdf->AddPage(); } $mpdf->Output('SGC.pdf','D');
Code:
for($i=0;$i<$count;$i++) { print_r ($unser[$i][0]); }
Comment