<?php class news { private $Baza; public function __construct() { } public function wyswietl($ile) { $query = 'SELECT id, tytul, tresc, data FROM news ORDER BY id DESC LIMIT 0, "'.$ile.'"'; $aNews[] = $r; } return $aNews; } } ?>
i teraz nie potrafię wyświetlić wyników
<?php require './news.php'; $smarty = new blog; $a = new news; $a -> wyswietl(1); $smarty -> assign('news', $a -> wyswietl()); $smarty -> display('news.tpl'); ?>
Pewnie coś źle robię tylko nie mam już pomysłu co.