Hi, I need to communicate from client-side via javascript with a xmlhttp object, or something that can make http requests.
I plan to call a PHP script which will make a SELECT in a MySQL table, and echo the result. The javascript object will recover this value and dinamically will change a text in the page without reloading.
It works pretty nice, but the problem is when the database contain foreign characters (like é in César)... the only way of solving this is by writing a file in the server in UNICODE format, and reading from it, the problem is that I cannot afford to write a file for each user, and that don't know how to format it UNICODE style with PHP. It would be better if I could make an ECHO sentence in which the characters are UNICODE, but don't know how to do it either...
Any help will be greatly appreciated...
Cesar