View Single Post
Old 05-17-2010, 10:04 PM   #4 (permalink)
adamdecaf
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Then just pull the data normally and put in a numeric array. That way you can print off the array from the 2nd element.

PHP Code:
$result mysql_query('SELECT * ... ');
$list = array();

while (
$row mysql_fetch_array($result)) {
   
$list[] = $row;

__________________
My Site
adamdecaf is offline  
Reply With Quote