Help for this page

Select Code to Download


  1. or download this
    use CGI;
    use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
    use Data::Dump qw(dump);
    
  2. or download this
    my $q = CGI->new;
    print '<!--', dump($q), "-->\n";
    
  3. or download this
    if ($DEBUG) {
      print $q->hr;
      print $q->p('Debugging: '), $q->Dump, $q->hr;
    }
    
  4. or download this
    <li><strong>orderby</strong></li>
    <ul>
    <li>10</li>
    
  5. or download this
      my $index = $q->param('orderby');
      my $desc = $q->param('desc');
      $index = 1 if not defined $index;
      print "\n<!-- variables (index, desc) are ($index, $desc) -->\n" if 
    +$DEBUG;