Skip to content

Instantly share code, notes, and snippets.

@pepeluis111
Created August 21, 2019 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pepeluis111/a7df1e2d3d6d64b7c425ad3b7f84e870 to your computer and use it in GitHub Desktop.
Save pepeluis111/a7df1e2d3d6d64b7c425ad3b7f84e870 to your computer and use it in GitHub Desktop.
<?php
$db_conf = array();
$db_conf["type"] = "pdo";
$db_conf["server"] = "firebird:host=localhost;dbname=C:/BD/TEST.FDB";
$db_conf["user"] = "SYSDBA";
$db_conf["password"] = "masterkey";
$db_conf["database"] = "";
include("./lib/inc/jqgrid_dist.php");
$g = new jqgrid($db_conf);
// set few params
$grid["caption"] = "Test";
$grid["rowNum"] = 10;
$g->set_options($grid);
// set database table for CRUD operations
$g->table = "TB_TEST";
// render grid
$out = $g->render("list1");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="./lib/js/themes/redmond/jquery-ui.custom.css"></link>
<link rel="stylesheet" type="text/css" media="screen" href="./lib/js/jqgrid/css/ui.jqgrid.css"></link>
<script src="./lib/js/jquery.min.js" type="text/javascript"></script>
<script src="./lib/js/jqgrid/js/i18n/grid.locale-es.js" type="text/javascript"></script>
<script src="./lib/js/jqgrid/js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="./lib/js/themes/jquery-ui.custom.min.js" type="text/javascript"></script>
</head>
<body>
<div style="margin:10px">
<?php echo $out?>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment