Hi,

i don't know how i set the correct charset in the header file.
I get a "ä" from a table cell and send it to an Mysql database.
I try it with the charset ISO-8859-1.

In the header appears this:
r0="ä"

How can i fix this problem?


createTable : function(tablename) {
// Call the backend service - using XmlHttp
var url = "http://localhost/moto/build/php/createTable.php";;
var req = new qx.io.remote.Request(url, "POST", "text/plain");
req.setAsynchronous(false);
req.setUseBasicHttpAuth(false);
req.setRequestHeader("content-type", "ISO-8859-1");
req.setData(tablename);
// Add listener
//req.addListener("completed", null, this);
req.send();


Best Regards,

Georg
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Request-Header-POST-tp5758737p5758737.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to