Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions