<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
<html>
 
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 
<title>Example 1 Datagrid</title>
 
<link rel="stylesheet" type="text/css" href="style.css" />
 
<script language="javascript" type="text/javascript" src="util.js"></script>
 
</head>
 
<body>
 
<?php
 
require 'datagrid.class.php';
 
require_once 'dbconfig.php';
 
 
$conn = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD) or die('Connection to database failed: ' . mysql_error());
 
mysql_select_db(DB_NAME) or die ('select_db failed!');
 
 
$grid = new Datagrid($conn);
 
$grid->baselink = 'example1.php';
 
 
//$grid->curpageformat = '<span>[%s]</span>';
 
//$grid->curpageformat = '<span class="lnkimage1">  %s   </span>';
 
 
$grid->navnext='<img src="image/arrow_right.gif" class="tbl-arrows">';
 
$grid->navlast='<img src="image/arrow_last.gif" class="tbl-arrows">';
 
$grid->navfirst='<img src="image/arrow_first.gif" class="tbl-arrows">';
 
$grid->navprev='<img src="image/arrow_left.gif" class="tbl-arrows">';
 
 
$grid->navnextd='<img src="image/arrow_right_disabled.gif" class="tbl-arrows">';
 
$grid->navlastd='<img src="image/arrow_last_disabled.gif" class="tbl-arrows">';
 
$grid->navfirstd='<img src="image/arrow_first_disabled.gif" class="tbl-arrows">';
 
$grid->navprevd='<img src="image/arrow_left_disabled.gif" class="tbl-arrows">';
 
 
$grid->navup='<img src="image/arrow_up.gif" class="tbl-arrows">';
 
$grid->navdown='<img src="image/arrow_down.gif" class="tbl-arrows">';
 
 
$grid->setFrom('lang_forms');
 
$grid->setFieldName('id,idlang,form,comp,title');
 
$grid->setColName('Sifra,Sifra lang,Forma,Comp,Title');
 
$grid->setColWidth('10%,15%,15%,30%,0%');
 
 
?>
 
<!--<div style="visibility:hidden; background-color:white; border: 0px solid black;" id="h_t"></div>-->
 
<div id="h_t"></div>
 
<div id="h_d">
 
<strong>Sample usually grid with sort, paging, search </strong>
 
<br><br>
 
<table width="50%" border="0" cellspacing="0" cellpadding="0">
 
<thead>
 
<tr>
 
<?php echo $grid->getHeader();?>
 
</tr>
 
</thead>
 
 
<tbody>
 
<?php echo $grid->getRows();?>
 
</tbody>
 
 
<tfoot>
 
<tr>
 
<td colspan="5" align="center">
 
<span id="navlinks"><?php echo $grid->getFoot();?></span>
 
</td>
 
</tr>
 
</tfoot>
 
</table>
 
</div>
 
</body>
 
</html>
 
 |