Help for this page

Select Code to Download


  1. or download this
    if{$q->param('mode' eq 'foo')}{
      # do some stuff
    ...
      # do some other stuff
    }
    
  2. or download this
    if($mode eq 'foo'){
            require 'foo.pl';
    }
    
  3. or download this
    require "$mode.pl";