Help for this page

Select Code to Download


  1. or download this
    my $query = $dbh->prepare("SELECT * FROM Blog ORDER BY created DESC");
    $query->execute;
    ...
        $test = $blog->heading;   # line 152
        push @blogs, $blog->hashref;
    }
    
  2. or download this
    package Bod::Blog;
    
    ...
        my $self = shift;
        return $self->{'heading'};
    }