I am using TCPDF for a some assessments that I am creating for my elementary students. Everything worked fine until I got to the greater and less than part. When ever I wanted to type in the greater symbol like this <, it would't come out thinking it was going to be an html tag. I am wondering if there is a way to fix that confusion. Here is a sample of the code so that you may understand:
<?php $html .= 'a. < <br />
b. > <br />
c. = <br />
d. + ';
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, ''); ?>
What that is displaying is this:
a.
b. >
c. =
d. +
How can I fix this issue? Any help is greatly appreciated.
Thanks in advance.
<as leaving it as the plaintext entity. – Jared Farrish Dec 21 '11 at 6:28