I want to show a certain amount of results (say, 5) and make a:
<a href="" onclick="<?php ShowNextResult(); ?>">
And use onlick to show the next 5 results.
|
I want to show a certain amount of results (say, 5) and make a:
And use onlick to show the next 5 results.
| ||||
feedback
|
|
EDIT :: HTML
JAVASCRIPT Use Jquery as below
PHP you should make a new php page (getNext.php ) that will get query results
HELP you can use SQL something like
| |||||||||
feedback
|
|
Since you specifically mention JavaScript I assume you don't want to reload the page or anything like that. Your onClick will have to trigger an AJAX call to a php page on your server that will handle the request and give you back the next five records (or the last 5, or random ones, etc...). JQuery is really popular for doing this and have built in functionality to make this process easier. http://api.jquery.com/jQuery.ajax/ Here are some tutorials: http://docs.jquery.com/Tutorials Your best bet is to write this functionality w/o using JavaScript. Make the page accept arguments to show specific records. Once you have that code done, then put the AJAX on top of it, but that way you'll have the older stuff to fall back on if you need to for compatibility or things don't work the way you need them to. These are pretty general answers, do you need specific help making the query to only show the next 5 records? Or the specific PHP code to tie it together? Or just the JS to do the AJAX stuff? Could you be more descriptive if you need more info. | |||
|
feedback
|