gpt4 book ai didi

php while 循环与 $i++

转载 作者:行者123 更新时间:2023-12-04 22:24:46 25 4
gpt4 key购买 nike

<分区>

我想要做的是在 while 循环中有一个单选按钮,每次循环运行时单选按钮的名称都会增加 1。
现在代码不起作用,因为它没有递增。任何建议都会很棒。

$query = mysql_query("SELECT * FROM table WHERE id = '1' ORDER BY time ASC");
echo '<table> <th> A </th> <th> time </th> <th> B </th>';

while($row = mysql_fetch_assoc($query)) {

$i= 1;
echo '<tr><td>';
echo '<input type="radio" name="';echo $i++; echo'" /> '; echo $row['a'];
echo '</td>';
echo '<td>';
echo $row['time'];
echo '</td>';
echo '<td>';
echo '<input type="radio" name="';echo $i++; echo '" />'; echo $row['b'];
echo '</td> </tr> ';
}


echo '</tr></table>';

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com