I send some data using php to db.
The code seems to be simple - but the lines are paired, and, surprisingly, two variables are displayed on one line, the rest on the second.
Code:
<?php // Check connection if($link === false) { die("ERROR: Could not connect. " . mysqli_connect_error()); } // Escape user inputs for security $first_name = mysqli_real_escape_string($link, $_REQUEST['FirstName']); $last_name = mysqli_real_escape_string($link, $_REQUEST['LastName']); $start_adress = mysqli_real_escape_string($link, $_REQUEST['stadres']); $end_adress = mysqli_real_escape_string($link, $_REQUEST['endadres']); $Price = mysqli_real_escape_string($link, $_REQUEST['price_finalized']); $CarriersQuant = mysqli_real_escape_string($link, $_REQUEST['amount_of_carriers']); // Attempt insert query execution $post = "INSERT INTO Orders (FirstName, LastName, StartAdress, EndAdress, Price, CarriersQuant) VALUES ('$first_name', '$last_name', '$start_adress', '$end_adress', '$Price', '$CarriersQuant')"; if(mysqli_query($link, $post)) { echo "Records added successfully."; } else { echo "ERROR: Could not able to execute $post. " . mysqli_error($link); } Here's what it looks like in db: 
I can not imagine where there may be an error.
print_r($post)show. - u_mulder