
jumaru
Deleted
Mar 2, 2000, 8:04 PM
Post #1 of 3
(310 views)
|
first this is my code : <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> #!/usr/bin/perl use CGI qw(:standard); use CGI::Carp qw(fatalsToBrowser); $q = new CGI; print $q->header(); $submit = $q->param('submit'); &step if($submit eq step); &step2 if($submit eq step2); &step3 if($submit eq step3); sub step { print "step\n"; } sub step2 { print "step2\n"; } sub step3 { print "step3\n"; } </pre><HR></BLOCKQUOTE> when I call the script I don't have any result, I have a blank page what's the problem
|