Hello, I am gonna need some nerdy genius for this thing because it's been bugging me for a looooon long time...
I have two pages (A_form.php and B_form.php). They both contain a form.
A_form.php contains a form with a text field called "firstname" and is set to send (action=post) the variables to A_process.php.
B_form.php contains a form with a text field called "lastname" and is set to send (action=post) the variables to B_process.php.
I wanna create one form page (C_form.php) that will contain two text fields called "firstname" and "lastname" and that will send both variables to both the A_process.php and the B_process.php pages (so that A_process.php will receive and use the firstname entered in the C_form.php and B_process.php will receive the lastname fromt the user's input in the C_form.php page).
Is there any PHP wizard out there who can suggest a solution?
Thanks