如何在获取值后设置单选按钮选中基数

时间:2014-03-21 02:25:05

标签: php radio-button

我正在进行简单的提取和更新。

如何根据postgresDB上的fetch值设置单选按钮?

我已经在postgresDB上获取了一些数据

$item['itemtype'];

echo "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"Ingredient\" <?php if(isset($item[itemtype]) && $item[itemtype] == 'Ingredient') echo 'checked=\"checked\"'; ?>>";
echo "<label for=\"radio\">Ingredient</label>";
echo "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"Miscellaneous\" <?php if(isset($item[itemtype]) && $item[itemtype] == 'Miscellaneous') echo 'checked=\"checked\"'; ?>>";
echo "<label for=\"radio\">Miscellaneous</label>";
echo "</td>";

项目类型

的类型
  • 成分

我应该如何验证呢?

1 个答案:

答案 0 :(得分:0)

检查出来

<?php
$item['itemtype'] = "Ingredient";

echo "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"Ingredient\"";
if(isset($item[itemtype]) && $item[itemtype] == 'Ingredient')
    echo "checked=checked";
echo ">Ingredient";

echo "<input type=\"radio\" name=\"radio\" id=\"radio\" value=\"Miscellaneous\"";
if(isset($item[itemtype]) && $item[itemtype] == 'Miscellaneous')
    echo "checked=checked";
echo ">Miscellaneous";

?>