That's what I thought you might refer to, sorry I'm new to posting in here.
This may not come thru great but here is the beginning of my frontpage.pl script;
#!/usr/local/bin/perl
BEGIN{unshift(@INC,"/usr/local/www/htdocs/pcworldlinks/cgi-bin/")};
use Cart;
$path="/usr/local/www/htdocs/pcworldlinks/cgi-bin/DIST/";
%ele=Cart::cgiparse;
if(!($ele{dist})){$dist=$ENV{'QUERY_STRING'};}else{$dist=$ele{dist};}
%var=Cart::get_client($dist,$path);
print "Content-Type: text/html\n\n";
print <<"EOF";
then my html code and ends with
EOF
}
Does this look right?
Thanks for the help.