Is my strip_tags in the correct position? Becuase I amd still getting
tags in my monthly output.
$xml = new SimpleXMLElement($xmlString, LIBXML_NOCDATA);
$scPDF = new schedulerPDF();
$scPDF->strip_tags = true;
$scPDF->printScheduler($xml);
Is my strip_tags in the correct position? Becuase I amd still getting
tags in my monthly output.
$xml = new SimpleXMLElement($xmlString, LIBXML_NOCDATA);
$scPDF = new schedulerPDF();
$scPDF->strip_tags = true;
$scPDF->printScheduler($xml);
Yep , it is the correct one.
Is tag occurs inside event text or inside some other elements?
I have HTML tags inside my event text so I can format it with spaces, etc in the scheduler. Will strip_tags not remove HTML within the event text?
It must remove HTML from the event’s text , for sure ( not so sure about dates and headers )
We will double-check it locally, maybe some part still missed.
Thanks. I have just tried it locally with your sample file:
<event id='1261150491' start_date='2009-12-19 07:00' end_date='2009-12-21 07:00' text="International Horse <strong>TEEST</strong>"/>
And it did not work. I await your results. Thanks