I am using FPDF to convert a submitted form in PDF format. On the PDF file, I have a <pre>
tag. Is there a way to align the text inside the <pre>
just like the normal output. Below are the example
Browser output:
PDF Output
The code that I use for the FPDF Function is on this link.
PHP
$pdf->WriteHTML('<pre>'.$remarks.'</pre>');
Is it posible to make the PDF Output as same as the Browser Output.