我正在进行简单的提取和更新。
如何根据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>";
项目类型
的类型我应该如何验证呢?
答案 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";
?>