Sophie

Sophie

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

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

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

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

header('Content-type: application/vnd.mozilla.xul+xml'); 
 
echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n";
echo "<?xml-stylesheet href=\"myStyle.css\" type=\"text/css\"?>\n";

echo "<window title=\"MyDataGrid\" 
       xmlns=\"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul\">\n";
       
$datagrid->render('XUL');

echo "</window>\n";
?>