i tried hosting this in 000webhost.com..can anyone please help? thjis is my register.php code <?php $con = mysqli_connect("localhost", "id2452528_chai", "987654", "id2452528_chaitu"); $name = $_POST["name"]; $age = $_POST["age"]; $username = $_POST["username"]; $password = $_POST["password"]; $statement = mysqli_prepare($con, "INSERT INTO user (name, age, username, password) VALUES ($name,$age,$username, $password)"); mysqli_stmt_bind_param($statement, "siss", $name, $age, $username, $password); mysqli_stmt_execute($statement); $response = array(); $response["success"] = true; echo json_encode($response); ?>
i tried hosting this in 000webhost.com..can anyone please help?
thjis is my register.php code