php 无法把表单提交的数据写入mysql数据库
conn.php$conn=mysql_connect("localhost","root","")ordie("不能链接mysql");mysql_select_db(...
conn.php
$conn=mysql_connect("localhost","root","")or die("不能链接mysql");
mysql_select_db("test",$conn)or die("不能链接数据库");
zhuce.php
include('conn.php');
$username=$_POST['username'];
$pwd=$_POST['pwd'];
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, $username, $pwd)";
mysql_query($sql);
执行后数据表中没反应,把最后两句换成
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, 'kobe', '2424')";
mysql_query($sql);
数据表就加了一条数据 展开
$conn=mysql_connect("localhost","root","")or die("不能链接mysql");
mysql_select_db("test",$conn)or die("不能链接数据库");
zhuce.php
include('conn.php');
$username=$_POST['username'];
$pwd=$_POST['pwd'];
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, $username, $pwd)";
mysql_query($sql);
执行后数据表中没反应,把最后两句换成
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, 'kobe', '2424')";
mysql_query($sql);
数据表就加了一条数据 展开
4个回答
展开全部
下面的代码经过调试通过,可直接用的,不过你得先所id设置为索引和自动增1的属性保存后才可以你上面这种操作,具体步骤如下:
1.你的数据库用户名和密码确保没错;
2.把id设置为自动增1且为索引字段;
3.具体的代码如下:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<?
$conn=mysql_connect("localhost","root","")or die("不能链接mysql");
mysql_select_db("test",$conn)or die("不能链接数据库");
$sql="INSERT INTO user_list (name,pwd) VALUES ( 'kobe', '2424')";
mysql_query($sql);
?>
<a href="zhuce.php">继续增加</a>
1.你的数据库用户名和密码确保没错;
2.把id设置为自动增1且为索引字段;
3.具体的代码如下:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<?
$conn=mysql_connect("localhost","root","")or die("不能链接mysql");
mysql_select_db("test",$conn)or die("不能链接数据库");
$sql="INSERT INTO user_list (name,pwd) VALUES ( 'kobe', '2424')";
mysql_query($sql);
?>
<a href="zhuce.php">继续增加</a>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
字符串类型加引号
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, ‘$username’, '$pwd’)";
$sql="INSERT INTO `test`.`user_list` (`id`, `name`, `pwd`) VALUES (NULL, ‘$username’, '$pwd’)";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一次执行多个表当然不行了,把test,user,list分别执行。就是说一次只执行一个表中的插入。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询