I have the following MySQL query which needs to be passed to query(). I'm having trouble understanding it.
INSERT INTO admin (student_name, student_email, student_city) VALUES ('mark','[email protected]','newark');
The place I got the script from has given the following,
$sql = "INSERT INTO students (student_name, student_email, student_city) VALUES ('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
The part I'm having trouble understanding is ('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')
What is happening there? All those inverted commas and periods have got me confused.