EDIT : Thanks for the quick responses guys - I ended up switching to mysql_fetch_assoc() and using a do...while and I am good to go.
I am using this
$query = "SELECT * FROM members"; $results = mysql_query($query); $row = mysql_fetch_array($results); <-- There's your first row. Remove this.