本文主要和大家分享php实现向数据库表中插入数据,主要以代码的形式和大家分享,希望能帮助到大家。
php插入数据页面insertData.php
<html>
<head>
<title>向数据库中插入数据</title>
</head>
<body>
<center>
<form name="myForm" method="post" action="processInsertData.php">
<table bgcolor="cyan">
<tr>
<td>学号</td>
<td><input type="text" name="txtId" /></td>
</tr>
<tr>
<td>姓名</td>
<td><input type="text" name="txtName" /></td>
</tr>
<tr>
<td>年龄</td>
<td><input type="text" name="txtAge"></td>
</tr>
<tr>
<td>性别</td>
<td>
<select name="sSex">
<option value="male">male</option>
<option value="female">female</option>
</select>
</td>
</tr>
<tr>
<td>地址</td>
<td><input type="text" name="txtAddress"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="添加"/>
<input type="reset" name="reset" value="重置">
</td>
</tr>
</table>
</form>
</center>
</body>
</html>处理数据插入页面processInsertData.php
<?php
$link=mysql_connect("localhost","root","root");
mysql_select_db("rorely");
$id=$_POST['txtId']|null;
$name=$_POST['txtName'];
$age=$_POST['txtAge'];
$sex=$_POST['sSex'];
$address=$_POST['txtAddress'];
$exec="insert into test values($id,'$name',$age,'$sex','$address')";
$result=mysql_query($exec);
if($result) echo "学生已添加到数据表中<br>";
else echo "该学生没有添加进数据表,请重新输入。<br>";
mysql_close();
?>
<a href="insertData.php">返回添加页面</a>相关推荐:
以上就是php实现向数据库表中插入数据的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号