php代码如何连接数据库 wordpress wecenter dedecms
准备环境:
mysql> create user blog@'%' identified by '123456';
mysql> create database blog;
mysql> grant all on blog.* to blog@'%';
mysql> create table user(id int,name char(10),age int);
mysql> desc user;
php连接数据库,并管理数据库代码:
# 编写前端登录注册页面 index.html (前端代码文件)
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="connect.php" method="post">
<table cellpadding="5">
<tr>
<td>用户名:</td><td><input type="text" name="username"></td>
</tr>
<tr>
<td>密码:</td><td><input type="password" name="password"></td>
</tr>
<tr>
<td>重复密码:</td><td><input type="password" name="repassword"></td>
</tr>
</table>
<input type="submit" value="提交">
</form>
</body>
</html>
利用程序代码连接数据库
最新推荐文章于 2024-11-08 18:30:00 发布