xaviergxf Posted September 5, 2009 Share Posted September 5, 2009 Hi, I´m using ajax(xml) to load one piece of php code, a template code stored on the database(Latin1). I´m having problems with accentuation when this piece of php code has accentuation. I´ve tryed almost everything, but i had no sucess at all. My code its like that: js: $.ajax({ url: '/admin/sistema/publicidade/req/getFormatos', type: 'post', dataType: 'xml', data: dados, success: function(data){ //process data }) }); php code: header("Content-Type: text/xml;charset=ISO-8859-1", true); $xml = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>"; $xml .= "<root>".htmlentities($php_from_db)."</root>"; echo $xml; sent data: <div> <?php echo $template; ?> áéí </div> Did anyone knows what can i do? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.