PHP: URL Encoding -
i have 2 files: test.php , test.html same content
<meta charset="utf-8"> <script> document.write(encodeuricomponent(';²')); </script> output php %3b%3f , html %3b%c2%b2. how can same result php? how can transform ;² %3b%c2%b2 using php functions?
Comments
Post a Comment