Hello,
I have a text/html editor coded in flash. I use a loadVars() to send some data to php so i can write my text file. So far, all good. The thing is, when the text i wanna write into my txt file is a URL, some symbols are getting added on the way that i don’t originaly have in flash.
i.e.: <a href=“www.somesite.com “target=”_blank”> [www]</A>
for <a href=“www.somesite.com” target="_blank"> [www]</A>
here’s how i catch the variables back within php:
$stock = urldecode($_POST[‘stock’]);
$stuff = utf8_encode ($stock); <-- i use UTF-8 cause i might have latin accents.
Anyone??