Well I hope I understand you correctly, but this
is how I would do it,
Lets say your form looks like so:
<form method="post" action="thispage.php" name="thisform">
Make your back button be like so:
<input type="button" value="Back" onclick="goBack()">
then have a bit of javascript like so:
<script language="javascript">
function goBack () {
document.thisform.action = 'backpage.php';
document.thisform.submit();
}
</script>
That should submit all the vars to whichever
page.