View Single Post
Old 05-01-2002, 10:06 AM  
swedguy
Confirmed User
 
Industry Role:
Join Date: Jan 2002
Posts: 7,981
It will extract the array you have to $button1, $button2.....

while ($row = mysql_fetch_array($result)) {
extract($row);
// After this line you can use
// $button1, $button2, ......
}

Take a look at the manual page for it, and play around with it.
swedguy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote