我有一个存储category_id,热门新闻等字段的表。顶部新闻字段使用单选按钮。我需要从数据库更新单选按钮的值。我可以在编辑时检索单个类别id的顶级新闻的值。当我尝试多次编辑类别ID时,我只能从数据库获得单个顶级新闻的价值,而其他ID的空值。 有没有办法根据多个类别的选择更新多个顶级新闻?
/*Code for Radio Button*/
<label>Top News</label>
<label>
<input type="radio" name="topnews[]" value="1" id="topnews_0" <?php echo($topnews=='1')?'checked':' '?> />Yes</label>
<label>
<input name="topnews[]" type="radio" id="topnews_1" value="0" <?php echo($topnews=='0')?'checked':' '?> />No</label>