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

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

php添加表數(shù)據(jù)庫中 php向mysql添加數(shù)據(jù)

PHP加數(shù)據(jù)庫

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

站在用戶的角度思考問題,與客戶深入溝通,找到比如網站設計與比如網站推廣的解決方案,憑借多年的經驗,讓設計與互聯(lián)網技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都做網站、成都網站建設、企業(yè)官網、英文網站、手機端網站、網站推廣、申請域名、雅安服務器托管、企業(yè)郵箱。業(yè)務覆蓋比如地區(qū)。

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

這是這個 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

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

下面是 "insert.php" 頁面的代碼:

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ù)到數(shù)據(jù)庫

input的name用數(shù)組,比如:

tr

tdinput?type="text"?name="name1[]"/td

tdinput?type="text"?name="name2[]"/td

/tr

tr

tdinput?type="text"?name="name1[]"/td

tdinput?type="text"?name="name2[]"/td

/tr

tr

tdinput?type="text"?name="name1[]"/td

tdinput?type="text"?name="name2[]"/td

/tr

提交后$_POST['name1']、$_POST['name2']都會以數(shù)組的方式儲存著3行tr的每個值,通過foreach可以把它們逐行添加進數(shù)據(jù)表

用php代碼怎么往數(shù)據(jù)庫里自定義插入數(shù)據(jù)

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

HTML

表單,這個表單可把新記錄插入

"Persons"

表。

這是這個

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

當用戶點擊上例中

HTML

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

"insert.php"。"insert.php"

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

$_POST

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

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

INSERT

INTO

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


分享文章:php添加表數(shù)據(jù)庫中 php向mysql添加數(shù)據(jù)
轉載注明:http://weahome.cn/article/doghesp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部