I want to take two variables from two different fields of a form and insert into one column... but can't understand how to do?? here is what i've tried..
$name= $_GET['name'];
$age = $_GET['age'];
$sex = $_GET['sex'];
$wpm = $_GET['wpm'];
$query = "INSERT INTO ajax_example (name,age,sex,wpm) values ('$name','$age','$sex','$wpm.$age')";
I want the combination of age and wpm to be stored in wpm