Is there something that would cause $IN->param('value'); not to work from within a frame?
I use this regularly to read in submitted form values, and until now have not had a problem with it.
I have used cgi to create a form which dispays in the browser_info.html pane. This form, depsite attaching POST value on submit, the cgi file reading it will not see these values using $IN->param:
<form action="mysite.com/cgi-bin/mycgi?do=testing" method="POST">
and in the cgi:
$action = $IN->param('do'); always returns blank
The cgi is headed with:
use strict;
use lib 'blah blah';
use GT::Base;
use Links::SiteHTML;
use Links::Plugins;
use Links qw/$IN $DB $CFG $USER/;
and
Links::init(blah blah);
Links::init_user(blah blah);
http://www.iuni.com/...tware/web/index.html
Links Plugins
I use this regularly to read in submitted form values, and until now have not had a problem with it.
I have used cgi to create a form which dispays in the browser_info.html pane. This form, depsite attaching POST value on submit, the cgi file reading it will not see these values using $IN->param:
<form action="mysite.com/cgi-bin/mycgi?do=testing" method="POST">
and in the cgi:
$action = $IN->param('do'); always returns blank

The cgi is headed with:
use strict;
use lib 'blah blah';
use GT::Base;
use Links::SiteHTML;
use Links::Plugins;
use Links qw/$IN $DB $CFG $USER/;
and
Links::init(blah blah);
Links::init_user(blah blah);
http://www.iuni.com/...tware/web/index.html
Links Plugins