Thread
:
php/mysql question
View Single Post
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
View Public Profile
Find More Posts by swedguy