首页 > 开发 > Php > 正文

PHP连接数据库实现注册页面的增删改查操作

2020-02-21 20:50:12
字体:
来源:转载
供稿:网友

本文实例为大家分享了PHP连接数据库实现注册页面的增删改查操作的方法,供大家参考,具体内容如下

1.连接数据库

<?php //本地测试 $host = '127.0.0.1'; $port = 3306; $user = "root"; $pwd = ""; $link = @mysql_connect("{$host}:{$port}",$user,$pwd,true); if(!$link) {  die("Connect Server Failed: " . mysql_error()); } //选择连接的数据库库名 mysql_select_db("my"); //设置字符编码utf8 mysql_set_charset('utf8');?>

2.注册页面(html页面)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <title>Document</title></head><body><h3>注册页面</h3> <form action="add.php" method='post'>  <table border='1' cellpadding='0' cellspacing='0' width='80%' bgcolor='#ABCDEF'>   <tr>    <td align='right'>用户名</td>    <td><input type="text" name="username" id=""/>以小写字母开始,长度要求5~10</td>   </tr>   <tr>    <td align='right'>密码</td>    <td><input type="password" name="password" id=""/>密码不能为空</td>   </tr>   <tr>    <td align='right'>邮箱</td>    <td><input type="text" name="email" id="" /></td>   </tr>   <tr>    <td align='right'>性别</td>    <td>     <input type="radio" name="sex" id="" value='1' />男     <input type="radio" name="sex" id="" value='2' />女     <input type="radio" name="sex" id="" value='3' />保密    </td>   </tr>   <tr>    <td align='right'>个人简介</td>    <td>     <textarea name="txt" id="" cols="50" rows="10"></textarea>    </td>   </tr>   <tr>    <td colspan='2'><input type="submit" name='act' value='注册' /></td>   </tr>  </table> </form></body></html>

3.将注册数据显示在数据库

//往数据库中添加数据<?phpheader("Content-type:text/html; charset=utf-8");//-----------------------连接数据库---------------------------include_once "connect.php";//-------------------------将数据连接到数据库------------------$time=time();$sql="insert into user (username,password,email,sex,txt,`time`) value('{$_POST['username']}','{$_POST['password']}','{$_POST['email']}','{$_POST['sex']}','{$_POST['txt']}','{$time}')";$res=mysql_query($sql);header("location:hello.php");?>            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表