Encoding/Decoding working differentlty on different servers.
Locally I'm running PHP v5.6. default_charset = UTF-8 according to php_info().
When I pass the value 's
in the URL it displays correctly in an input field as 's
.
Remotely my Godaddy server is running PHP v5.3, default_charset = No value according to php_info()
When I pass the value 's in the URL it displays incorrectly in the input field as %27s
.
I have added <meta http-equiv="content-type" content="text/html; charset=utf-8"></meta>
in the header of the html file.
Does anyone know how to resolve this so that 's
displays as 's
on the remote server?