Skip to content

Instantly share code, notes, and snippets.

@gridphp
Last active June 14, 2020 19:55
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 gridphp/52cf1e394dd2fe159185f3944365d669 to your computer and use it in GitHub Desktop.
Save gridphp/52cf1e394dd2fe159185f3944365d669 to your computer and use it in GitHub Desktop.
Connection demo with Postgres Database, https://www.gridphp.com
<?php
/**
* PHP Grid Component
*
* @author Abu Ghufran <gridphp@gmail.com> - http://www.phpgrid.org
* @version 2.0.0
* @license: see license.txt included in package
*/
$db_conf = array();
$db_conf["type"] = "postgres"; // mysql,oci8(for oracle),mssql,postgres,sybase
$db_conf["server"] = "localhost";
$db_conf["user"] = "postgres";
$db_conf["password"] = "a";
$db_conf["database"] = "test";
// $db_conf = array();
// $db_conf["type"] = "pdo";
// $db_conf["server"] = "pgsql:host=localhost";
// $db_conf["user"] = "postgres"; // username
// $db_conf["password"] = "a"; // password
// $db_conf["database"] = "test"; // database
include("../../lib/inc/jqgrid_dist.php");
$g = new jqgrid($db_conf);
// set few params
$grid["caption"] = "Sample Grid";
$grid["rowNum"] = 5;
$g->set_options($grid);
// set database table for CRUD operations
$g->table = "gareport_fields_test";
$g->select_command = "with
tab1 as (select * from gareport_fields_test)
select gareport_id from tab1";
// use custom count query
$g->select_count = "select count(*) as c from gareport_fields_test";
$col = array();
$col["title"] = "gareport_id";
$col["name"] = "gareport_id";
$col["dbname"] = "cast(gareport_id as varchar)";
$col["editable"] = true;
$cols[] = $col;
$g->set_columns($cols);
// 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-en.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>
You must have PostgreSQL installed for this demo. Also set database crendentials in this demo.
<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