I posted this question and got some help that did and didnt work.
What I want to do is pass info entered into one text feild onto a text feild on another page.
When I tried this I was able to transfer the info on to the next page if I used the second pages name in the form action feild..
...................(this is how the first page is set up)
<?php
session_start();
?>
<html...
<form action=test2.php method=post>
<input type=text name=email>
</form...
</html...
..............(the second page like this)
<html...
<input type=text name=email value=<?php echo $POST = isset($POST) ? $_POST : $HTTP_POST_VARS['email']; ?>>
</form...
</html...
the above worked...
But when I tried to enter the actual script url into the form action tag (cgi-bin/suscribe.cgi) none of the info would transfer to the second form. The suscribe.cgi file processes the info and then redirects the visitor to a url that is defined with in one of the cgi files.
Is there a way to store the info and still get it to transfer to the second form?
thanks
Russell