Question: Help me fix the error in the code connect _ error ) { die ( Connection failed: . $conn - > connect _

Help me fix the error in the code connect_error){
die("Connection failed: ". $conn->connect_error);
}
// Process form data when the form is submitted
if ($_SERVER["REQUEST_METHOD"]== "POST"){
$username = $_POST['editUsername'];
$name = $_POST['editName'];
$age = $_POST['editAge'];
$gender = $_POST['editGender'];
$dob = $_POST['editDOB'];
$height = $_POST['editHeight'];
$weight = $_POST['editWeight'];
// Insert data into the HealthLevels table
$sql = "INSERT INTO HealthLevels (UserID, Age, DateOfBirth, Height, Weight, BMI)
VALUES ('$username', '$age', '$dob', '$height', '$weight', '')";
if ($conn->query($sql)=== TRUE){
echo "Health level updated successfully";
} else {
echo "Error updating health level: ". $conn->error;
}
}
$conn->close();
?>

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!