The first value in LIMIT is the offset - which result to start returning from (starts at 0) And the second value is the amount of rows to return.
If the placeholder value equaled 2 then the statement LIMIT 2,10 would yield results 3 - 13. I've put a static value in the LIMIT and it worked correctly.