Reply to Re: database, *_fetch_array(),while() issue.
Posted by reandeau on 05/09/06 23:31
You have reached the last row of your result set using
sqlite_fetch_array($result). What you need to do is go back to the top
or your result set, this can be accomplished by using
sqlite_rewind($result). See
http://us3.php.net/manual/en/function.sqlite-rewind.php for more info.