form通过submit提交之后
在php端根据$_POST['name']方式获取到对应的表单内容,然后在通过insert方式添加到数据库就可以了啊。。
参考这里:
http://www.w3school.com.cn/php/php_mysql_insert.asp以下是代码:
HTML:<form action="insert.php" method="post"> Firstname: <input type="text" name="firstname" /> Lastname: <input type="text" name="lastname" /> Age: <input type="text" name="age" /> <input type="submit" /></form><?php$con = mysql_connect("localhost","peter","abc123");//连接数据库if (!$con){ die('Could not connect: ' . mysql_error());}mysql_select_db("my_db", $con);//打开数据库$sql="INSERT INTO Persons (FirstName, LastName, Age)VALUES('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";//插入数据if (!mysql_query($sql,$con)){ die('Error: ' . mysql_error());}echo{ "1 record added";}mysql_close($con);?>