I am trying to take 2 separate form fields and post them in a way so that they become combined into one single text field on the next page.
The user enters their first and last name into two separate form fields, and those variables are passed onto the next page as "name1" and "name2".
For example: John=(name1) Doe=(name2). So it should be posted in this fashion into one single text field:
Your Name: John (space) Doe
Here is the current code I have, but it doesn't seem to work.
header("Location: http://$payVal.pub.pay.clickbank.net/?detail= Software&email={$_POST['email']}&name={$_POST['name']}&name={$_POST['name2']}");