I have information from a form that i would like to enter into a MySQL DB, The normal insert works great for me but I would like to combine two text fields into one Column in the database.
Below is the current code I use to insert values to MySQL
$make = $_POST['make'];
$model = $_POST['model'];
UPDATE gs.gs_objects SET
vin = '".$vin."',
plate_number = '".$engine."',
model = '".$make."' '".$model."', //I am not sure if this is correct as it keeps giving me error!!
installer = '".$installer."'
WHERE imei = '$imei'
I am trying to add the make and model into on Column Ford Ranger as it is in two separate fields in my form