Structures_DataGrid
[ class tree: Structures_DataGrid ] [ index: Structures_DataGrid ] [ all elements ]

Source for file smarty-simple.php

Documentation is available at smarty-simple.php

  1. <?php
  2. require_once 'Structures/DataGrid.php';    
  3. require_once 'Smarty.class.php';
  4.  
  5. $datagrid =new Structures_DataGrid(10);
  6. $options = array('dsn' => 'mysql://username@localhost/mydatabase');
  7. $datagrid->bind("SELECT * FROM mytable"$options);
  8.  
  9. $smarty = new Smarty();
  10. $datagrid->fill($smarty);
  11. $smarty->display('smarty-simple.tpl');
  12. ?>

Documentation generated on Mon, 11 Mar 2019 15:47:20 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.