prepare($query); $res = $dbh->execute($sth); if(DB::isError($res)) database_error($res); while($row = $res->fetchrow(DB_FETCHMODE_ASSOC)) { $outArray[] = $row; } $template = inittmpl(array('filename'=>'articles.tmpl','path'=>'/')); $template->AddParam('content',$outArray); print $template->Output(); $dbh->disconnect(); ?>