Can you combine two input fields on a form on the next PHP confirmation form to a...

Phil M

New member
...variable? I have an area code and phone number field. 2 Fields (Area Code) and (Phone Number) and onto the next PHP confirmation page, I would like to combine them to make 1 variable to be stored into a database.

Here is the PHP variable code I have:
$phoneareacode = $_POST['phoneareacode'];
$phone = $_POST['phone'];

How can I combine the two to make 1 phone number?
 
Back
Top