I'm using a PHP contact form that collects the data as below: $Email = Trim(stripslashes($_POST['Email'])); $EmailTo = 'email@email.com'; $Subject = 'Website Enquiry'; $Name = Trim(stripslashes($_POST['Name'])); $Phone = Trim(stripslashes($_POST['Phone'])); $Address = Trim(stripslashes($_POST['Address'])); $Message = Trim(stripslashes($_POST['Message'])); $URL = Trim(stripslashes($_POST['URL'])); $Database = Trim(stripslashes($_POST['Database'])); $Payment = Trim(stripslashes($_POST['Payment'])); Code (markup): Then sends it to my email and uses a meta refresh to go to the confirmation page: // redirect to success page if ($success){ print "<meta http-equiv=\"refresh\" content=\"0;URL=../order-confirmation.php\">"; } else{ print "<meta http-equiv=\"refresh\" content=\"0;URL=../order-error.php\">"; } Code (markup): Q1. How can I include some of the fields gathered above so that they can be displayed on the order-confirmation.php page? Q2. Is there some way that I can also post the information to Google Docs? Would this be done at the form post level: <form method="post" action="includes/order.php"> Code (markup): Or, on that page - includes/order.php (most of which is pasted above). Thanks in advance for your help!
do it with "regular" PHP redirect: Google Docs have API: http://code.google.com/apis/documents/overview.html