SELECT * FROM `news` 
WHERE `deleted` = '0' 
ORDER BY `time` DESC 
LIMIT $START, $END

When LIMIT = 0,10 it loads good.
When LIMIT is 10,20 it loads good.
When LIMIT is 20,30 it loads the last 4 rows already shown in 20,30 again...

link|improve this question

how many rows you have in table? – Harry Joy Apr 27 '11 at 4:07
feedback

2 Answers

up vote 7 down vote accepted

The way you're using LIMIT is incorrect. It's not,

LIMIT <start> <end>

but rather,

LIMIT <offset> <number_of_rows>

From the MySQL documentation,

The first argument specifies the offset of the first row to return, and the second specifies the maximum number of rows to return.

So for example,

... LIMIT 0, 10 -- first 10 rows
... LIMIT 10, 10 -- rows 10-20
... LIMIT 10, 20 -- rows 10-30, not 10-20
... LIMIT 20, 30 -- rows 20-50, not 20-30

If you don't have enough rows in the resultset to fill the limit, it will just return up to the last row. For example, if you only retrieve 15 rows, ...LIMIT 10, 10 would return rows 10-15.

link|improve this answer
OMG I cannot believe I forgot that lol, thanks. – Shane Larson Apr 27 '11 at 4:18
feedback

First fetch Full data from DB using SELECT SQL_CALC_FOUND_ROWS FROM [table name]; it return total count;

use Three variable;

$start $end; $total_records;

use ceil($total_records/$start); U ll get roundValue; use it limit

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.