Hello all.
I'm using PHP & MySQL. The following works, but I would like to skip the first row.Any help is appreciated.Code:$sql = mysql_query('SELECT time_id FROM posts WHERE thread_id=1');
Many thanks.
Printable View
Hello all.
I'm using PHP & MySQL. The following works, but I would like to skip the first row.Any help is appreciated.Code:$sql = mysql_query('SELECT time_id FROM posts WHERE thread_id=1');
Many thanks.
You can use the limit clause:
You could change yours to start at 1 instead of 95.Quote:
Originally Posted by mysql manual
Link to that information
Excellent, thank you!