#!/usr/bin/perl -w use strict; use CGI qw(:standard); use URI::Escape; require "call_b.pl"; my $go_menu = &menu2; print "Content-type: text/html\n\n"; print $go_menu; #### #!/usr/bin/perl -w use strict; use CGI qw(:standard); use URI::Escape; my $address = uri_escape("some address"); sub menu2 { return qq| |; } 1;