php向数据库插入数据

Posted 精灵小公主

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php向数据库插入数据相关的知识,希望对你有一定的参考价值。

<?php
header("Content-type: text/html;charset=utf-8");
$con = mysql_connect("localhost","root","root");//连接数据库
if (!$con){
  die(‘Could not connect: ‘ . mysql_error());
}
mysql_select_db("web", $con);//打开数据库
mysql_query("set names utf8");
$sql="INSERT INTO users (username, password)
VALUES
(‘$_POST[username]‘,‘$_POST[password]‘)";//插入数据
if (!mysql_query($sql,$con)){
  die(‘Error: ‘ . mysql_error());
  echo "0";
}
echo "1";
mysql_close($con);
?>

 

以上是关于php向数据库插入数据的主要内容,如果未能解决你的问题,请参考以下文章

php向数据库插入数据

PHP数组未向数据库插入多行

使用ajax和php将数据插入postgresql数据库

超级有用的9个PHP代码片段

PHP向MySQL插入超大文本数据

PHP Mysql-插入多条数据