String create_url = "https://localhost/myapp/create.php";
is fout, de juiste is
String create_url = "https://192.168.0.3/myapp/create.php";
zijnde 192.168.0.3 het lokale ip van je pc (server)
String create_url = "https://localhost/myapp/create.php";
is fout, de juiste is
String create_url = "https://192.168.0.3/myapp/create.php";
zijnde 192.168.0.3 het lokale ip van je pc (server)