gpt4 book ai didi

php - 以查询形式回显数组值

转载 作者:行者123 更新时间:2023-11-29 21:27:52 28 4
gpt4 key购买 nike

我想让单选按钮的显示值从我的一个表的一列上的数组中读取结果。我相信我有正确的不同查询设置,并且它已正确存储到数组中。但是,我无法在 echo 语句中正确显示每个数组值。对于每个数组行( radio 1、 radio 2 和 radio 3),我收到 3 条错误消息,内容为“注意:未定义索引:品种”。

这是我的代码片段。

$radiosql = "SELECT DISTINCT Breed FROM register";
$myRData = mysqli_query($con,$radiosql);
$myRarray = array();

while ($row = mysqli_fetch_array($myRData,MYSQL_ASSOC)){
$myRarray[] = $row; // add the row in to the results (data) array
}

echo "<br />";
echo "<form action='' method='post'>";
echo "<input type='radio' name='rbreed' value='Radio 0'>All";
echo "<input type='radio' name='rbreed' value='Radio 1'>'" . $myRarray['Breed'][0] . "'";
echo "<input type='radio' name='rbreed' value='Radio 2'>'" . $myRarray['Breed'][1] . "'";
echo "<input type='radio' name='rbreed' value='Radio 3'>'" . $myRarray['Breed'][2] . "'";
echo " "."<input type='submit' name='submit' value='Select' />";
echo "</form>";

最佳答案

将您的代码更新为 $myRarray[0]['Breed'] 而不是 $myRarray['Breed'][0] ,依此类推。

echo "<br />";
echo "<form action='' method='post'>";
echo "<input type='radio' name='rbreed' value='Radio 0'>All";
echo "<input type='radio' name='rbreed' value='Radio 1'>'" . $myRarray[0]['Breed'] . "'";
echo "<input type='radio' name='rbreed' value='Radio 2'>'" . $myRarray[1]['Breed'] . "'";
echo "<input type='radio' name='rbreed' value='Radio 3'>'" . $myRarray[2]['Breed'] . "'";
echo " "."<input type='submit' name='submit' value='Select' />";
echo "</form>";

关于php - 以查询形式回显数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35426221/

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