ok i am looking to do the following
checkout.php page that opens a 2checkout page for the user to pay once they have paid i want that window (2co one) to close and the variables passed into the origional checkout.php page which will then become order_status.php
How can i do this?
David
Put the variables into sessions then use the header() function to take you back to the checkout page. From the checkout page check if the variables are registered in a session and go on from there
I've never done this but you could probibly use the target attribute in the from tag. Ex:
<form action="order_status.php" target="opener">
I'm sure you would need to use some JavaScript to do this though.