How to render html on my FPDF file? the content always showing strings with HTML tags for example if I input like this
the output will be like this
I tried strip_tags() like below to output the content without tags but the HTML shows no effect/rendering.
strip_tags($item['output'])
What can you suggest me to use?
You should use WriteHTML()
method.