gpt4 book ai didi

php - 如果等于在 PHP 和 MySQL 中输入的值,则显示内容

转载 作者:太空宇宙 更新时间:2023-11-03 12:36:03 26 4
gpt4 key购买 nike

好吧,基本上我想做的是在 MySQL 行数据等于输入值时显示一个 div,例如,如果用户类型列显示 admin-full,它需要显示一些内容。

我是 PHP 的新手,所以非常感谢您对此的帮助,我的代码如下。

<?php

$row_user['type'] = $user_type;

if ($user_type == admin_full)
{
<!-- START DIV DROPDOWN BOX-->
<div class="dropbox">
<a id="myHeader1" href="javascript:showonlyone('newboxes1');" >show this one only</a>
</div>
<div class="newboxes" id="newboxes1">Div #1</div>
<!-- END DIV DROPDOWN BOX-->
}
?>

最佳答案

<?php

像这样

<?php
// you probably have this line wrong.
//$row_user['type'] = $user_type;
// and you want
$user_type = $row_user['type'];

// I am assuming admin_full is not a constant, otherwise remove the single quotes
if ($user_type === 'admin_full')
{
?>
<!-- START DIV DROPDOWN BOX-->
<div class="dropbox">
<a id="myHeader1" href="javascript:showonlyone('newboxes1');" >show this one only</a>
</div>
<div class="newboxes" id="newboxes1">Div #1</div>
<!-- END DIV DROPDOWN BOX-->
<?php
}
else {
?>

Oops, what the duce are you doing dude!

<?php
}
?>

我假设 admin_full 不是常量,您想要一个字符串,否则将该行替换为

如果($user_type == admin_full)

关于php - 如果等于在 PHP 和 MySQL 中输入的值,则显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13090026/

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