使会话用户自动输入代码
当用户登录时,我希望输入类型文本已填充一些预先确定的字母......
我怎样才能做到这一点?
when a user logs in, I want a input type text to be already filled with some pre-determined letter...
how can I make that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过两种方式进行操作:-
您可以从管理区域授予控制权,以便管理员拥有完全控制权。这可以通过在管理区域的“设置”部分中提供包含所有推荐字母的下拉列表来实现,并让管理员选择她喜欢的字母和字母。将其存储在数据库中。然后您可以从数据库中检索它&当任何用户登录时在前端显示它。
当用户登录时,可以使用 PHP 函数“
rand()
"。第二个解决方案的一个简单的代码片段是:-
希望它有帮助。
You can do it in two ways:-
You can give control from the Admin area, so that the Administrator has the full control. This can be possible by providing a list drop down with all the recommended alphabets, in the Settings section of your Admin area, and let the Admin choose her preferred alphabet & store it in the database. Then you can retrieve it from the database & show it in the front-end when any user logs in.
When the user logs in, you can generate a random letter, using the PHP function "
rand()
".One simple code snippet for the second solution will be:-
Hope it helps.