由网页提交的表单提交写入数据库 PHP源代码该怎么写

由网页提交的表单提交写入数据库 PHP源代码该怎么写,第1张

把下面的代码保存为post.php

<?

$conn = mysql_connect("localhost","11111","22222")

$action = $_POST['action']

if($action == 'send'){

$username = $_POST['username']

$password = $_POST['password']

mysql_select_db("333333",$conn)

$sql = "INSERT INTO player (username,password) VALUES ('$username','$password')"

$result = mysql_query($sql,$conn)

}

?>

<html>

<body>

<form method="post" action="post.php">

<input type="text" name="username">

<input type="text" name="password">

<input type="hidden" name="action" value="send">

<input type="submit" name="Submit" value="提交">

</form>

</body>

</html>

1:首先要使用PHP的超全局变量 $_GET 和 $_POST 用于收集表单数据(form-data)

2:然后使用INSERT INTO 语句用于向数据库表中插入新记录。

具体示例:

(1)首先创建了一个名为 "Persons" 的表,有三个列:"Firstname", "Lastname" 以及 "Age"。

<?php

$con = mysql_connect("localhost","peter","abc123")

if (!$con)

{

die('Could not connect: ' . mysql_error())

}

mysql_select_db("my_db", $con)

mysql_query("INSERT INTO Persons (FirstName, LastName, Age)

VALUES ('Peter', 'Griffin', '35')")

mysql_query("INSERT INTO Persons (FirstName, LastName, Age)

VALUES ('Glenn', 'Quagmire', '33')")

mysql_close($con)

?>

(2)其次创建一个 HTML 表单,这个表单可把新记录插入 "Persons" 表。

<html>

<body>

<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>

</body>

</html>

(3)接着当用户点击上例中 HTML 表单中的提交按钮时,表单数据被发送到 "insert.php"。"insert.php" 文件连接数据库,并通过

$_POST 变量从表单取回值。然后,mysql_query() 函数执行 INSERT INTO 语句,一条新的记录会添加到数据库表中。

<?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)

?>

首先是连接到数据库

其次是对数据的 *** 作

最后是关闭数据库

具体例子网上很多这里我就转一个别人的:

sqlstr="select * from message" ---- >(message为数据库中的一个数据表,即你要显示的

数据所存放的数据表)

rs.open sqlstr,conn,1,3 ---- >(表示打开数据库的方式) rs.addnew 新增加一条记录

rs("name")="xx" 将xx的值传给name字段 rs.update 刷新数据库

------------------------------------------------------ rs.close

conn.close 这几句是用来关闭数据库 set rs=nothing set conn=nothing

------------------------------------------------------- % >

.<4 >删除一条记录

删除数据库记录主要用到rs.delete,rs.update

<!--#include file=conn.asp-- >(包含conn.asp用来打开bbs\db1\目录下的user.mdb数据 库) <%

dim name name="xx"

set rs=server.CreateObject("adodb.recordset") (建立recordset对象)

sqlstr="select * from message" ---- >(message为数据库中的一个数据表,即你要显示的数据所存放的数据表)

rs.open sqlstr,conn,1,3 ---- >(表示打开数据库的方式) ------------------------------------------------------- while not rs.eof

if rs.("name")=name then rs.delete

rs.update 查询数据表中的name字段的值是否等于变量name的值"xx",如果符合就执行删 除,

else 否则继续查询,直到指针到末尾为止 rs.movenext emd if wend

------------------------------------------------------ ------------------------------------------------------ rs.close

conn.close 这几句是用来关闭数据库 set rs=nothing set conn=nothing

------------------------------------------------------- % >

http://wenku.baidu.com/link?url=vya_shXfg3kgqbPvq-SfsIoAV7qZaf9XY2RsOQOCpwrt1Pr1yHMFKtQYnCgu8ExK0H-9LsgXWUpQ7FmEuN_a95gWD0cChMqPneQFyaHVgMK


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9908550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存