I have arrays of dynamic text field that took data from an XML file from the database. Everything went well, except for the part that, when I insert a <a> </a> tag inside the XML file, the dynamic text alignment and lines went all weird. I wonder what’s the problem with that…
Here’s the XML code (I change the content):
<?xml version="1.0" encoding="utf-8"?>
<newsUpdate>
<entry>
<DESC>Some content replacement.</DESC>
<DATE>17</DATE>
<MONTH>JANUARY</MONTH>
<YEAR>10</YEAR>
</entry><entry>
<DESC>To search the word you're looking for, you can go to <a href="http://www.google.com">www.google.com</a> Have fun!</DESC>
<DATE>17</DATE>
<MONTH>JANUARY</MONTH>
<YEAR>10</YEAR>
</entry><entry>
<DESC>Some content replacement.</DESC>
<DATE>10</DATE>
<MONTH>January</MONTH>
<YEAR>10</YEAR>
</entry>
</newsUpdate>
I also attached the error output.