这是我的代码。我认为问题在于$retrieve["'choice'.'$i'"];
这里的格式是什么?
$i = '1';
do {
$choice[$i] = $retrieve["'choice'.'$i'"];
$i++;
}
while ($i <= $numberofchoices);
echo $choice['1']; //not working!!
答案 0 :(得分:2)
试试这个:
$i = '1';
do {
$choice[$i] = $retrieve["choice".$i];
$i++;
}
while ($i <= $numberofchoices);
echo $choice['1'];