I am creating a form (on page 'A') that will submit it's contents to another page (page 'B').
Is there any way to have page 'B' list all of the form field names and values that were submitted from page 'A' without actually naming the variables in the PHP code of page 'B'? I would like to make page 'B' a test page to obtain all submitted data from another form page. If I add more fields to page 'A', they will automatically appear in the output of page 'B'. No error checking is needed on page 'B'. I'm just looking to spit out raw form data.
Is there any way to have page 'B' list all of the form field names and values that were submitted from page 'A' without actually naming the variables in the PHP code of page 'B'? I would like to make page 'B' a test page to obtain all submitted data from another form page. If I add more fields to page 'A', they will automatically appear in the output of page 'B'. No error checking is needed on page 'B'. I'm just looking to spit out raw form data.