want to echo multiple rows
I am using while loop to echo all rows from a table, e.g.,
while($row=mysql_fetch_row($result)) {echo"....";} and it is working fine but i want another way to echo all rows without using loop so that i can assign a variable to every resulting row. Is there any other method to do so??
|