Listing 4: add-news-form.html %# -*- mmm-classes: mason -*- Add a news story

Add a news story

Headline
Body
Category
<%once> my $dbh; <%init> # Connect to the database, if we haven't already done so $dbh = $m->comp("database-connect.comp"); # Get the list of categories my $sql = "SELECT category_id, category_name "; $sql .= "FROM Categories "; $sql .= "ORDER BY category_name "; my $sth = $dbh->prepare($sql); $sth->execute; my $row_ref; my @categories; # Put the list of categories into @categories while ($row_ref = $sth->fetchrow_arrayref) { my ($id, $name) = @$row_ref; push @categories, {id => $id, name => $name}; }