require_once 'Structures/DataGrid.php';
void Structures_DataGrid ([integer $limit = NULL [, integer $page = 0 [, string $renderer = DATAGRID_RENDER_TABLE]]])
void Structures_DataGrid
The constructor accepts 3 parameters all of which are optional and helps to determine which type of grid you would like to use.
integer $limit - An integer that determines how many records to show per page.
integer $page - An integer that determines which page to display.
string $renderer - A string that determines which renderer to use. Must be one of the defined constants.
This object must be constructed as a reference in PHP4
Example 55-1. Instantiating a new DataGrid Object in PHP4
$dg =& new Structures_DataGrid();