I'm having trouble making queries from my website to the database and everything being in the Nine, but locally if it works.
well I have uploaded my web to 000webhosting and then I opened a file that is my webservices so that it shows me some data, because it does not show them but locally in my xampp if you show me here is the file that is uploaded to the server called: ExtractSucursales.php
$host_name = "localhost";
$database = " id7358362_gestion_de_clientes";
$user = "id7358362_root";
$password = "LA_COntra de la base de datos";
$json = array();
$conexion = mysqli_connect($host_name,$user,$password,$database);
$consulta = "select latitud,longitud from sucursal";
$resultado_consulta = mysqli_query($conexion,$consulta);
if($resultado_consulta){
while ($fila = mysqli_fetch_array($resultado_consulta)){
$json["sucursales"][] = $fila;
}
echo json_encode($json);
}
Now when you open that file you should print data in json format but do not print anything is white, obviously since I created the database with the parameters shown above etc etc, now I do not know if it is the localhost or nose but please I need you to help me if you need to show something, I'll thank you. :).