首页 > 代码库 > php向mysql写入数据
php向mysql写入数据
利用PHP的post方式将获取到的数据写入mysql数据库中。
首先创建一个用于接收用户数据的表单页面 denglu.html
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<form action="./xinxi.php" method=‘POST‘>
<p>用户名:<input type="text" name="username" value="http://www.mamicode.com/请输入手机号码"></p>
<p>性 别:<input type="radio" name="sex" value="http://www.mamicode.com/man" >先生<input type="radio" name=‘sex‘ value="http://www.mamicode.com/woman">女士</p>
<p>出生年月:<input type="text" name="year" value="http://www.mamicode.com/1990">年<input type="text" name="yue" value="http://www.mamicode.com/01">月<input type="text" name="ri" value="http://www.mamicode.com/01">日</p>
<p>邮 箱:<input type="text" name="email"></p>
<p>密 码:<input type="password" name="password"></p>
<p>确认密码:<input type="password" name="password"></p>
<p><input type="submit" value="http://www.mamicode.com/Login"></p>
</form>
接着创建一个用于载入 denglu.html 的Login.php
<?php
include ‘./denglu.html‘;
创建一个能接收用户填写数据的,并且能使用语句操作mysql的 xinxi.php,该php代码是用于denglu.html中action指定的处理表单数据的服务器。
1 <?php 4 $birth =$_POST[‘year‘].$_POST[‘yue‘].$_POST[‘ri‘]; 5 $pass = md5($_POST[‘password‘]); 6 7 $flag=mysql_connect(‘localhost‘,‘root‘,‘******‘); 8 $f=mysql_query(‘use test1‘); 9 $f=mysql_query(‘set names utf8‘);
10 $conn="insert into yonghu(username,sex,birth,email,password) values(‘{$_POST[‘username‘]}‘,‘{$_POST[‘sex‘]}‘,‘{$birth}‘,‘{$_POST[‘email‘]}‘,‘{$pass}‘);"; 11 if($_POST){ 12 $username = isset($_POST[‘username‘]) ? $_POST[‘username‘] :‘‘; 13 if(isset($username)){ 14 mysql_query($conn); 15 echo "insert into yonghu(username,sex,birth,email,password) values(‘{$_POST[‘username‘]}‘,‘{$_POST[‘sex‘]}‘,‘{$birth}‘,‘{$_POST[‘email‘]}‘,‘{$pass}‘);"; 16 echo "<hr />传入数据成功!"; 17 die;21 } 22 }
效果如图:
php向mysql写入数据