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.

link|improve this question
It's possible you could use the encoded values. – Jared Farrish Dec 21 '11 at 6:25
Let me check them out. – user1109244 Dec 21 '11 at 6:27
That's a strange problem; if it proves to be true, I'd suggest reporting it as a bug to the TCPDF developers. An HTML parser should interpret a space after the < as leaving it as the plaintext entity. – Jared Farrish Dec 21 '11 at 6:28
For instance: jsfiddle.net/ZaVmz – Jared Farrish Dec 21 '11 at 6:30
the encoded values &#60; worked. The only thing is that I would have to change all of the ones I have created in my database which is over 150 of them. Is there a way where tcpdf recognizes that its a symbol instead of a tag. Let me know. if not so that I can start working on all on them LOL. – user1109244 Dec 21 '11 at 6:31
show 6 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.