Is there a way in PHP to repost all the $_POST variables without having to create hidden fields ?
page1.php has form with many form elements and post them to page2.php
page2.php reposts to page3.php without having to recreate all hidden fields
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can store the values in a session.
page2.phpsets them,page3.phpreads them (and optionally deletes them).