Posts by Eddy Oliveira • 1 point
3 posts
-
0
votes2
answers167
viewsA: Fetch information from a td by jquery
Define a class for each. Run a map function for each class type by taking the value with $(this). val()
-
0
votes2
answers275
viewsA: PHP returns NULL when information has accents
php returns correctly, the json_encode that turns null because it is not in utf-8. Here’s another solution: Before returning you call a function to convert the array to utf-8 $result =…
-
0
votes5
answers3267
viewsA: Php returns null JSON when it has accent in Mysql
Before returning you call a function to convert the array to utf-8 $result = converteArrayParaUtf8($result); //chama a função return json_encode($result); //retorna function: function…