Individual column filtering with Show/Hide columns dynamically #2

Individual column filtering with Show/Hide columns dynamically #2

iuliandumiuliandum Posts: 70Questions: 0Answers: 0
edited May 2010 in General
"server_processing_filter_col.php" changed file from examples_support.
[code]
<?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$value) {
${$aColumns[$i]}=$_GET[$value];
if(${$aColumns[$i]} !='undefined' and ${$aColumns[$i]} !=$orig_search_values[$i])
$array_cond[]=array($value,${$aColumns[$i]});
$i++;
}
//till this
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'] )."%' )";
}
///this deleted
/*
for ( $i=0 ; $i<$_GET['iColumns'] ; $i++ )
{
if ( $_GET['sSearch_'.$i] != '' )
{
if ( $sWhere != "" )
{
$sWhere .= " AND ";
}
else
{
$sWhere .= "WHERE ";
}
$sWhere .= fnColumnToField($i) ." LIKE '%".mysql_real_escape_string( $_GET['sSearch_'.$i] )."%'";
}
}
*/
//this I added
foreach($array_cond as $cond)
{
if ( $sWhere != "" )
{
$sWhere .= " AND ";
}
else
{
$sWhere .= "WHERE ";
}
$sWhere .= $cond[0] ." LIKE '%".mysql_real_escape_string( $cond[1] )."%'";
}
//till this
$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 .= '"aaData": [ ';
while ( $aRow = mysql_fetch_array( $rResult ) )
{
$sOutput .= "[";
$sOutput .= '"'.str_replace('"', '\"', $aRow['engine']).'",';
$sOutput .= '"'.str_replace('"', '\"', $aRow['browser']).'",';
$sOutput .= '"'.str_replace('"', '\"', $aRow['platform']).'",';
if ( $aRow['version'] == "0" )
$sOutput .= '"-",';
else
$sOutput .= '"'.str_replace('"', '\"', $aRow['version']).'",';
$sOutput .= '"'.str_replace('"', '\"', $aRow['grade']).'"';
$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";
}
?>
[/code]
This discussion has been closed.