I'm getting blank when I read the argument
use TeamSite::CGI_lite;use CGI qw(:standard);my %options;foreach my $optPair (split m|/|, path_info()) { my ($key, $value) = split /=/, $optPair; $options{$key} = $value;}if (! exists $options{'allow_past_dates'} ) { $options{'allow_past_dates'} = 1; #Determines whether dates in the #past are selectable #1 for true, 0 for false}
In your cgi / ipl you can have the following code to call the path variables along with values.
/iw-bin/blah.cgi?param1=val1¶m2=val2