Can someone please tell me how I can display only a certain row in a table not the first row? Thanks in advance.
| SitePoint Sponsor |



Can someone please tell me how I can display only a certain row in a table not the first row? Thanks in advance.





Which certain row? My favourite row? If so that's the 11th row.
Code:SELECT * FROM `table` LIMIT 10, 1
Bookmarks