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