in reply to (OT) To open a form in a new window
Then in post.pl, do something like:my $forminfo = param('forminfo'); post.pl?stuff=$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.my $forminfo = param('stuff'); if ($forminfo) { print "Hello world!\n"; print "$forminfo"; }
|
|---|