Chinese characters are done using UTF-8 multi-byte characters. URL’s cannot handle processing these as they are ASCII only and even at that they are symbol challenged. URL data like that needs to be URL encoded before you transmit it to a web server. Then your PHP script would need to be UTF-8 aware and the MySQL database tables have to handle UTF-8 encoding.
When you enter the characters in the URL of the browser, the browser does the URL encoding for you. When you do it through software, you have to do the URL encoding yourself.
Chinese characters are done using UTF-8 multi-byte characters. URL’s cannot handle processing these as they are ASCII only and even at that they are symbol challenged. URL data like that needs to be URL encoded before you transmit it to a web server. Then your PHP script would need to be UTF-8 aware and the MySQL database tables have to handle UTF-8 encoding.
When you enter the characters in the URL of the browser, the browser does the URL encoding for you. When you do it through software, you have to do the URL encoding yourself.