Help for this page

Select Code to Download


  1. or download this
    sub main {
        
    ...
    
    }
    
  2. or download this
    my $comments = $schema->resultset('News')->search(
            undef,
            { 
    ...
              order_by => 'date DESC' 
            }
        );
    
  3. or download this
    my $comments = $schema->resultset('News')->search(
            {},
            { 
    ...
              order_by => 'date DESC' 
            }
        );