I do not know if I understand what you want, but I suggest you the following Jquery tool:
link
Via Html:
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/DataTables-1.7.6/jquery.dataTables.min.js" type="text/javascript"></script>
Upload the css: Demo plugin, you can get it by downloading the latest version of this plugin.
<link rel=’stylesheet’ href=’js/DataTables-1.7.6/css/demo_table_jui.css’ />
<link rel=’stylesheet’ href=’js/DataTables-1.7.6/css/demo_table.css’ />
After loading it is necessary to initialize the script
<script type="text/javascript">
$(document).ready(function() {
$(‘#teste’).dataTable( );
} );
</script>
Create Html Physical Table
<table id="teste" width="100%">
<thead>
<tr>
<th>Nome</th>
<th>Email</th>
<th>Sexo</th>
<th>Data Nascimento</th>
<th>Nivel Escolar</th>
<th>Faculdade</th>
</tr>
</thead>
<tbody>
<?php for( $i=0; $i<100; $i++ ){?>
<tr>
<td><?php echo $i;?></td>
<td><?php echo $i+1;?></td>
<td><?php echo $i+2;?></td>
<td><?php echo $i+3;?></td>
<td><?php echo $i+4;?></td>
<td><?php echo $i+5;?></td>
</tr>
<?php }?>
</tbody>
</table>