Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 02ba8d21b8629c7c26ab200593b8d752 > files > 20

php-pear-Structures_DataGrid-0.9.3-2.mga4.noarch.rpm

<?php
require_once 'Structures/DataGrid.php';    
require_once 'Smarty.class.php';

$datagrid =& new Structures_DataGrid(10);
$options = array('dsn' => 'mysql://username@localhost/mydatabase');
$datagrid->bind("SELECT * FROM mytable", $options);

$smarty = new Smarty();
$datagrid->fill($smarty);
$smarty->display('smarty-simple.tpl');
?>