I have three pages as follows:
1> Form.php // users enter information, such as email, phone and is sent to registervalidate.php by POST method
2> registervalidate.php // validate the user entered information
3> welcome.php // print the user information back to the user
I need to redirect registervalidate.php to welcome.php if the user information is valid and print enter information on page welcome.php.
Here is question:
How do I transfer the posted data from form.php and send them to welcome.php from page registervalidate.php.
My working environment is XAMPP+MySQL+PHP+jQuery on windows machine.
Thank you