Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子
<body> <a href="settings.htm">Admin Settings</a> </body>
如何向用户隐藏此链接?
您如何区分站点中的普通用户和管理员。如果您使用 php 作为服务器端脚本。登录后将用户类型保存在数据库或会话中。
<body> <?php if($usertype =="admin"){ ?> <a href="settings.htm">Admin Settings</a> <?php } ?> </body>
问候
iijb
如果它是管理员,则使用设置为 true 的标志,如果此链接为 false 或 true,则根据标志设置可见性