Home > php教程 > php手册 > 数据库增加记录的php代码

数据库增加记录的php代码

WBOY
Release: 2016-06-13 10:07:55
Original
1427 people have browsed it

数据库增加记录的php代码 这是一款简单利用php mysql把用户提交的信息保存到数据库实例哦,下面复制文件到你的dw就可以用了哦。

数据库教程增加记录的php教程代码
这是一款简单利用php mysql教程把用户提交的信息保存到数据库实例哦,下面复制文件到你的dw就可以用了哦。
*/

if( $_post)
{
 $host = 'localhost';
 $user_name = 'root';
 $password = 'admin';
 
 $name = $_post['user_name'];
 $city = $_post['city'];
 
 if(empty($name) || trim($name)=='')
 {
  echo '请填写用户名!返回';
  exit;
 }
 
 $conn = mysql_connect($host,$user_name,$password);
 if(!$conn)
 {
  die('数据库连接失败:'.mysql_error());
 }
 mysql_select_db('test');
 
 $sql = "insert into users set id=7,name='" . $name . "',city='" . $city . "',created_time=now()";
 mysql_query($sql) or die("
error: ".mysql_error()."
sql:".$sql);
 mysql_close($conn);
 
 echo '数据插入成功,打开查看数据';
}

?>
提交用户信息


   
       
           
           
       
       
       
       
       
       
           
           
       
   
用户名:
来自城市:
    
  

           
 

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template