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

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

php添加數(shù)據(jù)庫(kù)記錄,php如何導(dǎo)入數(shù)據(jù)庫(kù)

PHP在網(wǎng)站上實(shí)現(xiàn)跟數(shù)據(jù)庫(kù)添加數(shù)據(jù)

把來(lái)自表單的數(shù)據(jù)插入數(shù)據(jù)庫(kù)

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

現(xiàn)在,我們創(chuàng)建一個(gè) HTML 表單,這個(gè)表單可把新記錄插入 "Persons" 表。

這是這個(gè) HTML 表單:

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

當(dāng)用戶點(diǎn)擊上例中 HTML 表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫(kù),并通過(guò) $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語(yǔ)句,一條新的記錄會(huì)添加到數(shù)據(jù)庫(kù)表中。

下面是 "insert.php" 頁(yè)面的代碼:

?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ù)庫(kù)

把來(lái)自表單的數(shù)據(jù)插入數(shù)據(jù)庫(kù)

現(xiàn)在,我們創(chuàng)建一個(gè) HTML 表單,這個(gè)表單可把新記錄插入 "Persons" 表。

這是這個(gè) HTML 表單:

1

2

3

4

5

6

7

8

9

10

11

12

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

當(dāng)用戶點(diǎn)擊上例中 HTML 表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫(kù),并通過(guò) $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語(yǔ)句,一條新的記錄會(huì)添加到數(shù)據(jù)庫(kù)表中。

下面是 "insert.php" 頁(yè)面的代碼:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

?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ù)庫(kù)里自定義插入數(shù)據(jù)

現(xiàn)在,我們創(chuàng)建一個(gè)

HTML

表單,這個(gè)表單可把新記錄插入

"Persons"

表。

這是這個(gè)

HTML

表單:

123456789101112

htmlbody

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

當(dāng)用戶點(diǎn)擊上例中

HTML

表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到

"insert.php"。"insert.php"

文件連接數(shù)據(jù)庫(kù),并通過(guò)

$_POST

變量從表單取回值。然后,mysql_query()

函數(shù)執(zhí)行

INSERT

INTO

語(yǔ)句,一條新的記錄會(huì)添加到數(shù)據(jù)庫(kù)表中。


本文名稱:php添加數(shù)據(jù)庫(kù)記錄,php如何導(dǎo)入數(shù)據(jù)庫(kù)
本文URL:http://weahome.cn/article/phipci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部