mysql - PHP output couple times data from a column -
how output data column, like.. example - column 40 lines of query results , want output that, 10 30 . how php?
for mysql, use limit offset, maxrows:
select * tbl limit 9,20; will rows 10-30. note offset value 0 based, hence 9 rather 10.
Comments
Post a Comment