If all you want to do is basically redirect the user, you can use the header("Location:") syntax and forward the user to the desired script and, at the script destination, forward the user again. The only time you can't use it is if there's intermediary text you display to the user (like "Thanks! click here to proceed").
Forwarding will also re-send ALL cgi parameters.
The only downside to this approach is that some browsers popup a dialog to the user asking if they want to re-post.
Another way that's a little more flexible and probably better in the long run, is to take all the post variables and stick them in the session...