I am new to PHP and MySQL and am looking for help with the following.
I would like to store a users email and selected language in a db on button click.
My thought was I could use Ajax for this so I put the below Ajax call in my JS functions file to pass the data to a separate Ajax file (ajax.php) which then inserts it into the db ("Users"). 
When I alert the values in JS they show correct so my input variables are ok and also the Ajax call returns "success" after passing the data but I can't get this to insert anything in my db.
When I run the same INSERT manually in the db it works fine. 
Can someone tell me what I am doing wrong here ?
My Ajax call (in my functions file):
$('#btnID').on('click', function(){
    var email = $.trim( $('#email').val() ).toLowerCase();
    var lang = $.trim( $('#lang').val() );
    $.ajax({
        url: "ajax.php",
        type: "post",
        cache: "false",
        data: {
            email: email,
            lang: lang
        },
        success: function(data) {
            console.log(data);
            alert("success");
        },
        error: function(){
            alert("failure");
        }
    });
});
My PHP (in my ajax.php file):
$conn = new mysqli($servername, $username, $password, $dbname);
$conn->set_charset("utf8");
if($conn->connect_error){
    die("Connection failed: " . $conn->connect_error);
}
$email = $_POST["email"];
$lang = $_POST["lang"]; 
$sql = "INSERT INTO Users (email, lang) VALUES ('" . $email . "', '" . $lang . "')";
$conn->close();
Many thanks in advance, Mike
 
     
     
    