Jump to content

Problems with ajax and encoding


xaviergxf

Recommended Posts

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?

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.