Now we can export the data to various formats like CSV, Excel, Pdf
<?php 
require_once '../../../php/demo/tabs.php';
?>
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Guriddo PivotGrid PHP Demo</title>
    <link rel="stylesheet" type="text/css" media="screen" href="../../../css/jquery-ui.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="../../../css/trirand/ui.jqgrid.css" />
    <style type="text">
        html, body {
        margin: 0;            /* Remove body margin/padding */
        padding: 0;
        overflow: hidden;    /* Remove scroll bars on browser window */
        font-size: 75%;
    }
        
    </style>
    <script src="../../../js/jquery.min.js" type="text/javascript"></script>
    <script src="../../../js/trirand/i18n/grid.locale-en.js" type="text/javascript"></script>
     
    <script src="../../../js/jquery-ui.min.js" type="text/javascript"></script>
     <script src="../../../js/trirand/src/jquery.jqGrid.js" type="text/javascript"></script>
    <!-- Files for the export -->
    <script type="text/javascript" language="javascript" src="//cdn.rawgit.com/bpampuch/pdfmake/0.1.20/build/pdfmake.min.js"></script>
    <script type="text/javascript" language="javascript" src="//cdn.rawgit.com/bpampuch/pdfmake/0.1.20/build/vfs_fonts.js"></script>
    <script type="text/javascript" language="javascript" src="//cdnjs.cloudflare.com/ajax/libs/jszip/2.5.0/jszip.min.js"></script>
    
    <script type="text/javascript">         
        $.jgrid.no_legacy_api = true;
        $.jgrid.useJSON = true;
        $.jgrid.defaults.width = "700";
    </script>
  </head>
  <body>
      <div>
          <?php include ("pivot.php");?>
      </div>
      <br/>
      <?php tabs(array("pivot.php"));?>
   </body>
</html>
pivot.php.
<?php
require_once '../jq-config.php';
// include the jqGrid Class
require_once ABSPATH."php/PHPSuito/jqGrid.php";
// include the driver class
require_once ABSPATH."php/PHPSuito/DBdrivers/jqGridPdo.php";
// Connection to the server
$conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD);
// Tell the db that we use utf-8
$conn->query("SET NAMES utf8");

// Create the jqGrid instance
$pivot = new jqPivotGrid($conn);
// Write the SQL Query
$pivot->SelectCommand "SELECT c.CategoryName, b.ProductName, e.Country, SUM( a.Quantity * a.UnitPrice ) AS Price, SUM(a.Quantity) AS Quantity 
FROM order_details a, products b, categories c, orders d, customers e
WHERE a.ProductID = b.ProductID
AND b.CategoryID = c.CategoryID
AND a.OrderID = d.OrderID
AND d.CustomerID = e.CustomerID
AND (
e.Country = 'UK'
OR e.Country = 'USA' 
OR e.Country = 'Germany'
)
GROUP BY a.ProductID, e.Country"
;

// Set the url from where we obtain the data
$pivot->setData('pivot.php');

// Grid creation options
$pivot->setGridOptions(array(
    
"rowNum"=>10,
    
"height"=>200,
    
"sortname" => "CategoryName",
    
"rowList"=>array(10,20,50,100),
    
"caption"=>"Rows grouping"
));
// Grid xDimension settings
$pivot->setxDimension(array(
    array(
"dataName"=>"CategoryName""width"=>90),
    array(
"dataName" => "ProductName")
));

// Grid yDimension settings
$pivot->setyDimension(array(
    array(
"dataName" => "Country")
));


// Members
$pivot->setaggregates(array(
    array(
        
"member"=>'Price',
        
"aggregator"=>'sum',
        
"width"=>80,
        
"label"=>'Sum',
        
"formatter"=>'number',
        
"align"=>'right',
        
// the summary type set the sum function of the groups
        
"summaryType"=>'sum'
    
)
));
// Set the pivot options
$pivot->setPivotOptions(array(
    
"groupSummaryPos"=>'footer'
));

// Enable navigator by calling it with call grid method with timout
//$pivot->callGridMethod("#grid", "navGrid", array("#pager"),500);
$pivot->navigator true;
// Enable excel export
$pivot->setNavOptions('navigator', array("excel"=>false,"add"=>false,"edit"=>false,"del"=>false,"view"=>false"search"=>false"refresh"=>false));
// add a custom button via the build in callGridMethod
// note the js: before the function

$buttonoptions = array("#pager",
    array(
"caption"=>"Csv""title"=>"Local Export to CSV""onClickButton"=>"js: function(){
        jQuery('#grid').jqGrid('exportToCsv');}"
    
)
);
$pivot->callGridMethod("#grid""navButtonAdd"$buttonoptions,1000);

$buttonoptions = array("#pager",
    array(
"caption"=>"Excel""title"=>"Local Export to Escel""onClickButton"=>"js: function(){
        jQuery('#grid').jqGrid('exportToExcel');}"
    
)
);
$pivot->callGridMethod("#grid""navButtonAdd"$buttonoptions,500);
$buttonoptions = array("#pager",
    array(
"caption"=>"Pdf""title"=>"Local Export to PDF""onClickButton"=>"js: function(){
        jQuery('#grid').jqGrid('exportToPdf');}"
    
)
);
$pivot->callGridMethod("#grid""navButtonAdd"$buttonoptions,500);


$pivot->renderPivot("#grid","#pager"truenulltruetrue);