views:

55

answers:

1

Hi everybody,

I have a php page that returns an HTML table like this:

<table>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  data</td>
   </tr>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  data</td>
   </tr>
   <tr>
     <td>First Row data</td><td>Second Row  data</td><td>Third Row  data</td>
   </tr>
   <tr>
     <td>etc...</td>
   </tr>
</table>

What I want to do is to add an ajax numerical pagination system (1 2 ... 6) that allows we to fix a max 3 rows to display and reaching the others with the navigation.

Do you know where can I find a ready script that can help to solve this problem?

Thank you very much, regards.

A: 

Is this about what your looking for? http://www.dynamicdrive.com/dynamicindex17/ajaxpaginate/index.htm

Eggie
thanks for your answer. But, it doesn't fit with my needs ;)
Zakaria
It's not really a ready script, but this can help you build it in jQuery.http://www.exforsys.com/tutorials/jquery/jquery-javascript-pagination.html
Eggie