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

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

web applications - Making Python scripts work on MAMP -

cocoa - Converting NSString to keyCode+modifiers for AXUIElementPostKeyboardEvent -