Help for this page

Select Code to Download


  1. or download this
      <a href="/cgi-bin/cgi2.pl?pleasecall=myfunc2&param1=one&param2=two">
    +Click here to call func</a>
    
  2. or download this
    my %param;
    # Access the Query String Data
    ...
    if ($param{pleasecall} eq "myfunc2"){
       myfunc2 ($param{param1}, $param{param2});
    }