query($query); $news = array(); while ($result = $results->fetch_assoc() ) { foreach ($result as $k => $v) { $result[$k] = fromdb($v); } $result['text'] = nl2br($result['text']); array_push($news, $result); } $results->close(); $smarty->assign("news", $news); $smarty->display("default.tpl"); $db->close(); ?>