@nospor a może wiesz co zrobić aby wyeliminować błąd z sortowaniem polskich znaczków w TinyTable ?
http://www.leigeber.com/2009/11/advanced-j...t-table-sorter/
<?php //include the information needed for the connection to MySQL data base server. // we store here username, database and password include("db/db_config_jq.php"); $page = $_REQUEST['page']; // get the requested page $limit = $_REQUEST['rows']; // get how many rows we want to have into the grid $sidx = $_REQUEST['sidx']; // get index row - i.e. user click to sort $sord = $_REQUEST['sord']; // get the direction if(!$sidx) $sidx =1; if($totalrows) { $limit = $totalrows; } // connect to the database //populateDBRandom(); $count = $row['count']; if( $count >0 ) { } else { $total_pages = 0; } if ($page > $total_pages) $page=$total_pages; if ($limit<0) $limit = 0; $start = $limit*$page - $limit; // do not put $limit*($page - 1) if ($start<0) $start = 0; $SQL = "SELECT id, title, text, author, date, time, counter FROM songs ".$where." ORDER BY $sidx $sord LIMIT $start , $limit"; $responce->page = $page; $responce->total = $total_pages; $responce->records = $count; $i=0; $responce->rows[$i]['id']=$row[id]; $i++; } ?>
rowTotal:null