| 
<link href="estilo.css" rel="stylesheet" type="text/css">
 <link href="estilo.css" rel="stylesheet" type="text/css">
 
 <?
 include("classDatagrid.php");
 mysql_connect("localhost","root","");
 mysql_select_db("radio");
 
 $oDataGrid= new classDatagrid;
 $oDataGrid->set_query("select * from banners where username like '%mt%'","rowId");
 $oDataGrid->set_title("<center>This is my title<center>");
 
 $oDataGrid->set_col_name("username","Nombre");
 $oDataGrid->set_col_type("filePath","IMG");
 $oDataGrid->set_page_size(10);
 
 $oDataGrid->set_col_type("totalShows","LNK","http://algo.php/index.php");
 $oDataGrid->set_col_type("username","LNK","http://algo.com/index.php","texto opcional");
 
 $oDataGrid->set_col_type("UNIX_TIMESTAMP(timestamp)","DATE","M d Y-G:i");
 $oDataGrid->show_checkbox(false);
 $oDataGrid->set_tool("TXT","delete","index.php");
 $oDataGrid->set_tool("IMG","drop.gif","index.php");
 $oDataGrid->set_tool("TXT","view","index.php");
 ?>
 <?
 $oDataGrid->display();
 ?>
 
 |