05-17-2010, 10:04 PM
|
#4 (permalink)
|
|
The Addict
Join Date: May 2009
Posts: 287
Thanks: 5
|
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; }
|
|
|
|