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
You're just preparing the query and not triggering it
So, You should have something like
Warning :
You're not sanitize your input (Never trust your input)
You shall prefer Prepared statements PDO to make it better
Update :
As the OP needs to know more about cleaning the input
There are severals steps or approaches available
Use mysql_real_escape_string() for escaping function for query variables
Use strip_tags() to remove the unwanted unwanted html
If you have embeddedstring then do htmlspecialchars
Input might be shellcommand to burst everything escapeshellcmd