I'm working with php and I want to do a next button that's step to the next 10 records (like when you browse question with stackoverflow) I don't know how to do that but I'm thinking to do it with Top n record ? Do you think that's a good idea ? Any suggestion?
|
1
|
|||
|
|
|
As for doing it in PHP, you can easily make the button send a POST or GET request for the starting amount. For instance, a user would make the initial request and that is just
Edit 1: This article is the best I could find as to how to replicate MySQL's |
|||
|
|
|
|
I know in MySQL you can use LIMIT X, Y where X is the lower bound of the return and Y is the upper bound. So if you wanted to return 10-20 you would use LIMIT 10, 20. Not sure what the MS-SQL equivalent is. |
||
|
|
|
doesn't mssql have something like LIMIT in mysql? so you could do:
for first 10 results, then do LIMIT 10,20 for next 10 results etc. |
||||
|
|
|
You can use MySQL's limit Set a variable called:
and in your query do
Btw this is from memory but i think it works. |
||
|
|
|
|
Would this be any help to you?
|
||||
|
|
|
for MySQL:
|
||
|
|
