create a code that create update profile like full name, address, mobile number and email address
<?php
session_start();
include('includes/header.php');
include('includes/navbar.php');
if (!isset($_SESSION['email'])) {
header('Location: login.php');
}
$conn = mysqli_connect('localhost'...