Forum Moderators: open
Ok, I put the script code in my html editor. I did a search and replace for the (for example), %3C is < Now, I did this for everything that I found except was not sure what to do with a LINE FEED as there was no code for it in the chart I am using. %0A is a Line Feed, but I don't know what to replace that with.
Anyway, is there any such thing as a converter that will convert from script using escape codes to regular html?
Sorry if this is the wrong forum.
In PHP, you can use
urldecode([i]string[/i]) and it will handle everything for you automatically. <?php
echo urlencode("place your string here");
?>
Running that, and viewing the source, will generate the decoded string exactly.