- or download this
# In perl script
my $article = MPDatabase::Article->retrieve($articleId);
...
<!-- TMPL_VAR NAME="article.title" -->
<!-- TMPL_VAR NAME="article.author" -->
etc...
- or download this
# In perl script
my @articles = MPDatabase::Article->retrieve_all;
...
<!-- TMPL_VAR NAME="this.author" -->
etc...
<!-- /TMPL_LOOP -->
- or download this
foreach my $article ( @articles ) {
print STDERR $article->anyColumnName;
}