$result = mysql_query( "select title from post LIMIT 5 OFFSET 0"); while ($row = mysql_fetch_object($result)) { echo $row->title; }
Jump To Top of Thread