How to set utf-8
for ajax post requests ?
i use this code for ajax post requests
$.ajax({
url: 'test.php',
dataType: 'text',
cache: false,
contentType: false,
processData: false,
data: form_data,
type: 'post',
success: function(php_script_response){
$('#files_attachments_list_display').append(php_script_response);
}
In test.php
, I tried to insert data into db , ok it's insert success.
but char that insert not utf-8
. How can i do to set utf-8 on ajax post requests ?