使用 PHP/MySQL 连接 phpMyAdmin 数据库
我已经使用 phpMyAdmin 创建了一个数据库,现在我想为我的网站制作一个注册表单,人们可以在其中注册。我知道如何使用 HTML 中的输入标签,并且知道如何将数据插入数据库,但我的问题是我不知道如何连接到 phpMyAdmin 中已经创建的数据库。
I've made a database using phpMyAdmin , now I want to make a register form for my site where peaple can register .I know how to work with input tags in HTML and I know how to insert data into a database but my problem is that I don't know how I can connect to the database that is already made in phpMyAdmin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
该数据库是 MySQL 数据库,而不是 phpMyAdmin 数据库。 phpMyAdmin 只是连接到数据库的 PHP 代码。
The database is a MySQL database, not a phpMyAdmin database. phpMyAdmin is only PHP code that connects to the DB.
连接到 MySQL
还可以使用 mysqli_connect() 函数打开到 MySQL 服务器的新连接。
Connect to MySQL
Also mysqli_connect() function to open a new connection to the MySQL server.
设置一个用户,一个允许用户使用(例如本地主机)与 MySQL 对话的主机,授予该用户足够的权限来执行他们需要的数据库操作..然后就完成了。
用户需要基本的 CRUD 权限才能启动,这足以存储收到的数据从一个表格。其余的权限是不言自明的,即更改表的权限等。给予用户完成其工作所需的权力。
Set up a user, a host the user is allowed to talk to MySQL by using (e.g. localhost), grant that user adequate permissions to do what they need with the database .. and presto.
The user will need basic CRUD privileges to start, that's sufficient to store data received from a form. The rest of the permissions are self explanatory, i.e. permission to alter tables, etc. Give the user no more, no less power than it needs to do its work.
面向对象:
过程:
Object Oriented:
Procedural: