in reply to Conceptualizing
This applies to your otherscript.cgi where you would initialize a new CGI-object and then access the parameter like this
Using use CGI qw/: standard/; instead of use CGI; gives you a "magic/invisible" object which you in fact can access as $CGI::Q making the code snippet above look something likeuse CGI; my $q = new CGI; my $ord_id = $q->url_param('ord_id');
So choose one, not both!use CGI qw/: standard/; my $ord_id = url_param('ord_id');
|
|---|