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.
我在设置连接到特定数据库或表的登录时遇到问题。我想要一个像这样的 CName 登录:_ __ 用户:_ _ 密码:_ ____ 其中 cname 允许他们访问指定的数据库。有没有这方面的教程。我还没有找到一个。到目前为止,我已经设置了一个基本的数据库/php 表单,但所有用户最终都会将信息提交到单个数据库而不是个人数据库。帮助!如果有人能指出我正确的方向,那就太棒了。我不希望有人为我做这件事,但我需要学习这个。
谢谢
您可以根据用户名添加 if 或 switch case 语句来定义数据库
switch($_REQUEST['CName']) { case 'user1': //set database to db for user1 break; case 'user2': //set database to db for user2 break; default: //set default database break; }