I'm pulling data from MySql using PHP and displaying 5 per page while using << Previous Next >> buttons to grab the next page so the URL looks like: ?id=59&page=2 Is there a way to put some kind of effect on this such as a page transition or does anybody know of a way to do it in CSS3 or JQuery?
Dynamic fader effect image transitions in IE highlight this easy, short, cross-browser cut-and-paste script that presents images in a continuous slideshow format. Any number of images can be used, and timing is adjustable.It is great for newcomers, but a solid utility script, too.
Use POST instead of GET to eliminate the URL. You can use GET to just retrieve data, but you don't have to.
That means my navigation links would be forms? The pages are dynamic categories, pages etc so post wouldn't work in this instance.
No, it just means that the URL wouldn't show the data, the question mark and the parts after it. The data would still be sent to the PHP page.
Thanks, it's not exactly what I was asking for though. I was asking if there's a better way to pull out the records for next/previous pages rather than ugly refreshing. The page works like this: ?id=1 > This is a main item but within this I have a list of related items which I have limited to 10 with next/previous buttons. If the button is clicked, the URL becomes ?id=1&page=2 What I need is a more efficient way to pull the related items out without putting too much of a load on the server and without refreshing the page.
found this, maybe this can help you hxxp://www.9lessons.info/2010/10/pagination-with-jquery-php-ajax-and.html or maybe you will find the answer from one of this hxxp://www.jqueryrain.com/2012/04/best-ajax-jquery-pagination-plugin-tutorial-with-example-demo/