I have a php page which takes the form inputs on the referring page. It searches a database based on these inputs and creates an array with the records that correspond. Right now I have it set to output this data into an html table. This all works great, but it's not exactly what I want.
I'd like to be able to prompt for the user's email address and send the data to them that way, but I do not want this prompt to be displayed with the original form. So when they submit their email address, I'll have to send the data to a new php page.
Is it possible to pass the array to the second php page? Or better yet, is there a way to pass the html code for the table?