| 
<?php
 include('pi_lib/PaginatorIterator.php');
 
 include('models/MenuModel.php');
 $db=new PDO('mysql:dbname=j15;host=127.0.0.1', 'root', '123456');
 $menu=new MenuModel($db);
 
 include('Smarty-2.6.19/Smarty.class.php');
 $smarty=new Smarty;
 $smarty->plugins_dir[]="./plugins";
 $smarty->assign('paginator', $menu->getItems($_GET['pageno']));
 $smarty->display("example2.tpl");
 ?>
 |