Click here to Skip to main content
15,898,993 members

Comments by jagdish123061 (Top 22 by date)

jagdish123061 2-Feb-16 23:57pm View    
I couldn't find any help from them so....
jagdish123061 25-Nov-15 6:57am View    
solved it. problem in values some values are not in collation utf-8. So i had convert it using function:

function utf8ize($d) {
if (is_array($d)) {
foreach ($d as $k => $v) {
$d[$k] = utf8ize($v);
}
} else if (is_string ($d)) {
return utf8_encode($d);
}
return $d;
}


and then echo json_encode(utf8ize($result))
jagdish123061 25-Nov-15 6:44am View    
response is blank.

json_encode not working
jagdish123061 7-Jul-15 7:21am View    
Thank u for reply.

I also know that it is not possible but is there any other way to achive it.
jagdish123061 18-Apr-15 4:03am View    
Thank you nasser_mry.... You solved my big problem