Hi, I am a newbie to the forum and php! I have a html page that has to store the varaibles in a database for future reference. But now my boss says that I need to show a confirmation page in between the main html page and the database page where i have written my functions to store the variables in the database. So now the confirmation page has not got any fields in them and it just prints the variables posted by the Main HTML page. I need the same vairables to be posted again to the database page from the confirmation page. Any one got any idea on how to post the same vairables again? Or can i have the functions of database page in the confirmation page as user defined functions with a button onclick handler?
thanks in advance.
Have a form on that confirmation page, which has a button to confirm, and sends the data to the page which has the function that you already wrote. In the form, use <input type="hidden" /> to put the data in the page, but hide it from the user.