↧
PHP – URL Encode and Decode
Special characters in URL are encoded according to RFC 3986. You could get the encoded URL by rawurlencode(). <html> <head> <title>PHP - Encode and Decode URL</title>...
View ArticleJavascript – Encode and decode URL like %20
When you want to create an url which contains special charaters like the whitespace, you need to convert it to %20 ascii value. In Javascript, you could simply make use of the built-in encodeURI() and...
View Article