mirror of
https://github.com/DataTables/DataTables.git
synced 2026-04-25 03:00:08 -04:00
Initial commit - DataTables 1.7.0
This commit is contained in:
104
examples/examples_support/server_processing_ordering.php
Normal file
104
examples/examples_support/server_processing_ordering.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
/* MySQL connection */
|
||||
include( $_SERVER['DOCUMENT_ROOT']."/datatables/mysql.php" ); /* ;-) */
|
||||
|
||||
$gaSql['link'] = mysql_pconnect( $gaSql['server'], $gaSql['user'], $gaSql['password'] ) or
|
||||
die( 'Could not open connection to server' );
|
||||
|
||||
mysql_select_db( $gaSql['db'], $gaSql['link'] ) or
|
||||
die( 'Could not select database '. $gaSql['db'] );
|
||||
|
||||
/* Paging */
|
||||
$sLimit = "";
|
||||
if ( isset( $_GET['iDisplayStart'] ) && $_GET['iDisplayLength'] != '-1' )
|
||||
{
|
||||
$sLimit = "LIMIT ".mysql_real_escape_string( $_GET['iDisplayStart'] ).", ".
|
||||
mysql_real_escape_string( $_GET['iDisplayLength'] );
|
||||
}
|
||||
|
||||
/* Ordering */
|
||||
if ( isset( $_GET['iSortCol_0'] ) )
|
||||
{
|
||||
$sOrder = "ORDER BY ";
|
||||
for ( $i=0 ; $i<mysql_real_escape_string( $_GET['iSortingCols'] ) ; $i++ )
|
||||
{
|
||||
$sOrder .= fnColumnToField(mysql_real_escape_string( $_GET['iSortCol_'.$i] ))."
|
||||
".mysql_real_escape_string( $_GET['sSortDir_'.$i] ) .", ";
|
||||
}
|
||||
$sOrder = substr_replace( $sOrder, "", -2 );
|
||||
}
|
||||
|
||||
/* Filtering */
|
||||
$sWhere = "";
|
||||
if ( $_GET['sSearch'] != "" )
|
||||
{
|
||||
$sWhere = "WHERE engine LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%' OR ".
|
||||
"browser LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%' OR ".
|
||||
"platform LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%' OR ".
|
||||
"version LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%' OR ".
|
||||
"grade LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%'";
|
||||
}
|
||||
|
||||
$sQuery = "
|
||||
SELECT SQL_CALC_FOUND_ROWS id, engine, browser, platform, version, grade
|
||||
FROM ajax
|
||||
$sWhere
|
||||
$sOrder
|
||||
$sLimit
|
||||
";
|
||||
$rResult = mysql_query( $sQuery, $gaSql['link'] ) or die(mysql_error());
|
||||
|
||||
$sQuery = "
|
||||
SELECT FOUND_ROWS()
|
||||
";
|
||||
$rResultFilterTotal = mysql_query( $sQuery, $gaSql['link'] ) or die(mysql_error());
|
||||
$aResultFilterTotal = mysql_fetch_array($rResultFilterTotal);
|
||||
$iFilteredTotal = $aResultFilterTotal[0];
|
||||
|
||||
$sQuery = "
|
||||
SELECT COUNT(id)
|
||||
FROM ajax
|
||||
";
|
||||
$rResultTotal = mysql_query( $sQuery, $gaSql['link'] ) or die(mysql_error());
|
||||
$aResultTotal = mysql_fetch_array($rResultTotal);
|
||||
$iTotal = $aResultTotal[0];
|
||||
|
||||
$sOutput = '{';
|
||||
$sOutput .= '"sEcho": '.intval($_GET['sEcho']).', ';
|
||||
$sOutput .= '"iTotalRecords": '.$iTotal.', ';
|
||||
$sOutput .= '"iTotalDisplayRecords": '.$iFilteredTotal.', ';
|
||||
$sOutput .= '"sColumns": "platform,engine,browser,grade,version",';
|
||||
$sOutput .= '"aaData": [ ';
|
||||
while ( $aRow = mysql_fetch_array( $rResult ) )
|
||||
{
|
||||
$sOutput .= "[";
|
||||
$sOutput .= '"'.str_replace('"', '\"', $aRow['platform']).'",';
|
||||
$sOutput .= '"'.str_replace('"', '\"', $aRow['engine']).'",';
|
||||
$sOutput .= '"'.str_replace('"', '\"', $aRow['browser']).'",';
|
||||
$sOutput .= '"'.str_replace('"', '\"', $aRow['grade']).'",';
|
||||
if ( $aRow['version'] == "0" )
|
||||
$sOutput .= '"-"';
|
||||
else
|
||||
$sOutput .= '"'.str_replace('"', '\"', $aRow['version']).'"';
|
||||
$sOutput .= "],";
|
||||
}
|
||||
$sOutput = substr_replace( $sOutput, "", -1 );
|
||||
$sOutput .= '] }';
|
||||
|
||||
echo $sOutput;
|
||||
|
||||
|
||||
function fnColumnToField( $i )
|
||||
{
|
||||
if ( $i == 0 )
|
||||
return "engine";
|
||||
else if ( $i == 1 )
|
||||
return "browser";
|
||||
else if ( $i == 2 )
|
||||
return "platform";
|
||||
else if ( $i == 3 )
|
||||
return "version";
|
||||
else if ( $i == 4 )
|
||||
return "grade";
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user