真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php表單插入數(shù)據(jù)庫 php數(shù)據(jù)庫表格

怎么用php把html表單內(nèi)容寫入數(shù)據(jù)庫

1:首先要使用PHP的超全局變量 $_GET 和 $_POST 用于收集表單數(shù)據(jù)(form-data)

創(chuàng)新互聯(lián)公司專注于柴桑網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供柴桑營銷型網(wǎng)站建設(shè),柴桑網(wǎng)站制作、柴桑網(wǎng)頁設(shè)計(jì)、柴桑網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造柴桑網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供柴桑網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

2:然后使用INSERT INTO 語句用于向數(shù)據(jù)庫表中插入新記錄。

具體示例:

(1)首先創(chuàng)建了一個(gè)名為 "Persons" 的表,有三個(gè)列:"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)其次創(chuàng)建一個(gè) HTML 表單,這個(gè)表單可把新記錄插入 "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)接著當(dāng)用戶點(diǎn)擊上例中 HTML 表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫,并通過

$_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語句,一條新的記錄會(huì)添加到數(shù)據(jù)庫表中。

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

?

PHP表單提交不同數(shù)據(jù)到數(shù)據(jù)庫的不同表的不同字段怎么實(shí)現(xiàn)?

你可以用 PHP 的 MySQLi 或 PDO 庫來實(shí)現(xiàn)。

首先,你需要使用這些庫中的函數(shù)連接數(shù)據(jù)庫,然后把表單中的字段值插入到相應(yīng)的數(shù)據(jù)表中。

例如,如果你使用 MySQLi,你可以這樣寫:

$conn = mysqli_connect("hostname", "username", "password", "database_name");

$rwid = $_POST['rwid'];

$rwdj = $_POST['rwdj'];

$rwzb = $_POST['rwzb'];

$sql1 = "INSERT INTO table_a (s) VALUES ('$rwid')";

mysqli_query($conn, $sql1);

$sql2 = "INSERT INTO table_b (d) VALUES ('$rwdj')";

mysqli_query($conn, $sql2);

$sql3 = "INSERT INTO table_c (f) VALUES ('$rwzb')";

mysqli_query($conn, $sql3);

如果你使用 PDO,你可以這樣寫:

$conn = new PDO("mysql:host=hostname;dbname=database_name", "username", "password");

$rwid = $_POST['rwid'];

$rwdj = $_POST['rwdj'];

$rwzb = $_POST['rwzb'];

$stmt1 = $conn-prepare("INSERT INTO table_a (s) VALUES (:s)");

$stmt1-bindParam(':s', $rwid);

$stmt1-execute();

$stmt2 = $conn-prepare("INSERT INTO table_b (d) VALUES (:d)");

$stmt2-bindParam(':d', $rwdj);

$stmt2-execute();

$stmt3 = $conn-prepare("INSERT INTO table_c (f) VALUES (:f)");

$stmt3-bindParam(':f', $rwzb);

$stmt3-execute();

希望這個(gè)答案對你有幫助。

php插入數(shù)據(jù)到數(shù)據(jù)庫表單

表單應(yīng)該使用名字,例如:

form action=xxx.php method=post

select name="select1"

option value="1" selected="selected"男/option

option value="0"女/option

/select

/form

這樣,在xxx.php里面使用$_POST['select1']獲取結(jié)果。

php怎么把表單提交的數(shù)據(jù)放到數(shù)據(jù)庫中。

php數(shù)據(jù)庫操作主要分為5個(gè)步驟:1連接MYSQL

2連接到你的數(shù)據(jù)庫

3寫SQL語句

4運(yùn)行sql語句

5關(guān)閉數(shù)據(jù)庫

//第一步

$con

=

mysql_connect("localhost","root","123456789");

//第二步

mysql_select_db('rankingme',$conn);

//第三步

$sql="insert

into

lili

(name,sex,et,hobby,photo,tel,address,content,time)

values

($name,$sex,$et,$hobby,$photo,$tel,$address,$content,$time)"

//第四步

mysql_query($sql);

//第五步

mysql_close($con);


本文標(biāo)題:php表單插入數(shù)據(jù)庫 php數(shù)據(jù)庫表格
當(dāng)前URL:http://weahome.cn/article/ddsohje.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部