Page 1 of 1

fetch multiple rows from db

Posted: Tue Jun 15, 2010 8:13 am
by manRay
I need to retrieve multiple rows from a database. I know that the mysql_fetch_row() only gets one row, so than how do I get more than one?

Re: fetch multiple rows from db

Posted: Tue Jun 15, 2010 8:25 am
by aravona
Have you tried using a while loop ?

Re: fetch multiple rows from db

Posted: Tue Jun 15, 2010 8:41 am
by manRay
Thanks!