When I want to display the data returned by a JSON, it returns me NULL . But when the database information is without accents, it returns me normally:
<?php
include_once 'WSAps_conexao.php';
$cidade =$_POST['cidade'];
$sql = $dbcon->query("SELECT * FROM parques WHERE Cidade = '$cidade'");
if(mysqli_num_rows($sql)>0)
{
while($row = mysqli_fetch_assoc($sql))
{
$res[] = $row;
}
echo json_encode($res);
}
else
{
echo "login_false";
}
?>