sounds good, I'm used to working w/ PERL in .pl or .sh :P
but to grab data from a submited form form another page you will use the following code
Code:
$variable = param("form name");
this will grab, file streams, string, intigers, and just about everything
In your code to auto fill the same form fields you will just do something like this
[code]
print "<input type='text' value='$variable'>";
This will auto fill that information in the new field. I hope this makes sence.
Wesley