Home  >  Article  >  php教程  >  PHP通过SQL语句将数据写入MySQL数据库指定的表

PHP通过SQL语句将数据写入MySQL数据库指定的表

WBOY
WBOYOriginal
2016-06-21 08:57:15714browse

PHP向MySQL数据库中写入数据有三个步骤:

1,PHP和MySQL建立连接关系

2,打开MySQL数据库

3,接受页面数据,PHP录入到指定的表中

1、2两步可直接使用一个数据库链接文件即可:conn.php


mysql_connect("localhost","root","");//连接MySQL
mysql_select_db("hello");//选择数据库
?>

当然,前提是已经安装WEB服务器、PHP和MySQL,并且建立MySQL表“webjx”

mysql_connect()中三个参数分别为MySQL地址、MySQL用户名和MySQL密码


然后就是通过WEB页面传递数据,让PHP通过SQL语句将数据写入MySQL数据库指定的表中,比如新建文件 post.php


require_once("conn.php");//引用数据库链接文件

$uname = $_GET['n'];//GET方法为URL参数传递
$psw = $_GET['p'];
$psw=md5($psw);//直接使用MD5加密

$sql = "insert into members(username,password) values ('$uname','$psw')";
mysql_query($sql);//借SQL语句插入数据

mysql_close();//关闭MySQL连接
echo "成功录入数据";
?>


即可向MySQL数据库hello的members表中插入新的数据“webjx”到username字段、“i0514”到password字段
 



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn