gpt4 book ai didi

php - 如何根据数据库表中的数据检查或选择单选按钮?

转载 作者:行者123 更新时间:2023-11-29 09:05:16 25 4
gpt4 key购买 nike

遇到问题,我的应用程序似乎没有根据保存的数据检查单选按钮。实际上我有两个单选按钮,它的值为 1 或 2 ,该值的保存确实有效,但是当用户使用他/她的帐户再次访问该应用程序时,不会检查任何单选按钮

这是从数据库表中提取单选按钮数据的代码

//User.php
public function getGalleryMenuStyle($id = ''){
$gallerymenustyle = "SELECT gallery_menu_style FROM users WHERE user_id = ".$id;
$this->dbSelectQuery = $gallerymenustyle;
$checkedgallerymenustyle = $this->userDBSelect();
if($checkedgallerymenustyle){
return $checkedgallerymenustyle;
} else {
return false;
}
}

这是前端代码

$userCats = new User();
$user_id = $_SESSION['userData']['user_id'];
$checkedgallerymenustyle = $userCats->getGalleryMenuStyle($user_id);

<div align="center" class="radio_group">
<input type="radio" id="gallerymenustyle1" class="element radio" name="gallerymenustyle[]" value="1" <?php if($checkedgallerymenustyle == 1){ echo "selected"; }?> /> Gallery Link - In the navigation of my website, display one "gallery" link<br />
<input type="radio" id="gallerymenustyle2" class="element radio" name="gallerymenustyle[]" value="2" <?php if($checkedgallerymenustyle == 2){ echo "selected"; }?> /> Category Links - In the navigation of my website, display a separate link to each category.
</div>

如何解决这个问题?我的代码有什么问题吗?

最佳答案

单选按钮使用“选中”而不是“选择”

关于php - 如何根据数据库表中的数据检查或选择单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7210141/

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