php 动态添加记录
程序员文章站
2022-05-30 13:05:29
复制代码 代码如下: 插入一条新数据
<html>
<head>
<title>插入一条新数据</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<form method="post" name="form1" action="insert.php">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">编号:</td>
<td><input type="text" name="id" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">用户名:</td>
<td><input type="text" name="username" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">密码:</td>
<td><input type="text" name="password" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td colspan="2" nowrap><input name="submit" type="submit" value="提交">
<input type="reset" name="reset" value="重设"></td>
</tr>
</table>
</form>
</body>
</html>
<?php
@mysql_connect("localhost", "root","1981427") //选择数据库之前需要先连接数据库服务器
or die("数据库服务器连接失败");
@mysql_select_db("test") //选择数据库mydb
or die("数据库不存在或不可用");
$id = $_post['id'];
$username = $_post['username'];
$password = $_post['password'];
$query = mysql_query("insert into tablename1 values($id, '$username', '$password')");
if($query)
echo "数据插入成功";
else
echo "数据插入失败";
mysql_close();
?>
复制代码 代码如下:
<html>
<head>
<title>插入一条新数据</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<form method="post" name="form1" action="insert.php">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">编号:</td>
<td><input type="text" name="id" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">用户名:</td>
<td><input type="text" name="username" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">密码:</td>
<td><input type="text" name="password" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td colspan="2" nowrap><input name="submit" type="submit" value="提交">
<input type="reset" name="reset" value="重设"></td>
</tr>
</table>
</form>
</body>
</html>
复制代码 代码如下:
<?php
@mysql_connect("localhost", "root","1981427") //选择数据库之前需要先连接数据库服务器
or die("数据库服务器连接失败");
@mysql_select_db("test") //选择数据库mydb
or die("数据库不存在或不可用");
$id = $_post['id'];
$username = $_post['username'];
$password = $_post['password'];
$query = mysql_query("insert into tablename1 values($id, '$username', '$password')");
if($query)
echo "数据插入成功";
else
echo "数据插入失败";
mysql_close();
?>
上一篇: 我找女朋友的条件
推荐阅读
-
高分解难题:PHP查询MYSQL数据,记录集怎么特殊显示
-
Nine Million Bicycles PHP实现MySQL更新记录的代码
-
php数组添加元素方法小结,php数组元素小结_PHP教程
-
用php实现动态产生xml文件以及从xml文件中抽取数据转化成html的
-
用php把excel中对应条数的记录输出求解如何把其合并成一句话
-
php使用ffmpeg向视频中添加文字字幕的实现方法
-
destoon公司主页模板风格的添加方法_PHP教程
-
添加数据之后不跳页面显示一个漂亮的提示信息(非ajax提交数据),提示信息ajax_PHP教程
-
ThinkPHP 动态批改config.php中的配置信息
-
Wordpress 相册插件 NextGEN-Gallery 添加目录将中文转为拼音的解决办法_php技巧