Help for this page

Select Code to Download


  1. or download this
    use CGI;
    $q = new CGI;
    ...
       print $q->redirect('http://www.foo.bar');
    }
    
  2. or download this
    if ($q->param('foo')) {
        #do stuff if has stuff in field
    ...
       print "<input type=text name=bar value=$bar>";
    
    }