$sql = 'SELECT * FROM t1
RIGHT OUTER JOIN t2 ON t2.wid = t1.wid
LIMIT ' . $number . ' OFFSET 678';
When i change by my hand this offset it runs for different values of my database... How I can do it without change with my hand this offset?? Someone said me that I can do it without offset but he did not tell me how... Could someone help plz?? I have over a month with this issue :'( :'( :'(
$per_page = 10;
$current_page = read_current_page(); // 0,1,2...
$start = $current_page*$per_page;
$sql = 'SELECT * FROM t1
RIGHT OUTER JOIN t2 ON t2.wid = t1.wid
LIMIT ' . $start . ','. $per_page;
save_current_page(++$current_page);
It should be something like that. read_current_page() should somehow read value from file, database or where ever you decide to keep that value. So, you need some place to store it between the calls.
Then you create your query and at end you have to update value of that counter. Add also some logic to reset it, the way you need it. But point is that you have to store it somewhere outside of your code...since after call is executed all values are lost.