aeon
07-24-2004, 02:57 PM
I'm pulling html strings from a PHP file into a html enabled textfield in flash mx.
The problem is the whole string gets screwed when there are illegal chracters like <, >, ', ", etc. I tried urlencode($string) but it doesn't encode all characters. I also tried str_replace("<", "%3C", $string) but it displays "%3C" instead if <...
What can I do to ensure the text I give flash is in a flash-friendly format?
The problem is the whole string gets screwed when there are illegal chracters like <, >, ', ", etc. I tried urlencode($string) but it doesn't encode all characters. I also tried str_replace("<", "%3C", $string) but it displays "%3C" instead if <...
What can I do to ensure the text I give flash is in a flash-friendly format?