alert('Error: Both mobile numbers should be different!');";
} else {
// Update Query
$updateQuery = "UPDATE footer_content SET
about_us = ?,
branch = ?,
WHERE id = 1";
$stmt = mysqli_prepare($conn, $updateQuery);
mysqli_stmt_bind_param($stmt, "ss", $about_us, $branch);
if (mysqli_stmt_execute($stmt)) {
echo "";
} else {
echo "";
}
mysqli_stmt_close($stmt);
}
}
?>