php/mysql question
I know this is not a fucking builder board or anything but most people are using php/mysql, so here is my question:
how do I simplify this piece of code, hence than one day there could be up to 100 buttons.
while ($row = mysql_fetch_array($result)) {
$button1 = $row['button1'];
$button2 = $row['button2'];
$button3 = $row['button3'];
$button4 = $row['button4'];
$button5 = $row['button5'];
$button6 = $row['button6'];
$button7 = $row['button7'];
$button8 = $row['button8'];
$button9 = $row['button9'];
$button10 = $row['button10'];
$button11 = $row['button11'];
$button12 = $row['button12'];
$button13 = $row['button13'];
$button14 = $row['button14'];
}
Thank yOU>Q><W
|