in reply to (OT) To open a form in a new window

I wouldn't know how to make it stop redirecting in the same window, but if the data is lost in the new window maybe you could try a url_param. Instead of post.pl, use something like
my $forminfo = param('forminfo'); post.pl?stuff=$forminfo
Then in post.pl, do something like:
my $forminfo = param('stuff'); if ($forminfo) { print "Hello world!\n"; print "$forminfo"; }
I have no idea if this will help your problem, but if you pass the paramaters as part of the URL itself, maybe it will help.


"Age is nothing more than an inaccurate number bestowed upon us at birth as just another means for others to judge and classify us"

sulfericacid