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

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

php像數(shù)據(jù)庫添加數(shù)據(jù) php如何與數(shù)據(jù)庫連接

php使用mysqli向數(shù)據(jù)庫添加數(shù)據(jù)的方法

本文實(shí)例講述了php使用mysqli向數(shù)據(jù)庫添加數(shù)據(jù)的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

成都創(chuàng)新互聯(lián)公司專注于慶云企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城網(wǎng)站建設(shè)。慶云網(wǎng)站建設(shè)公司,為慶云等地區(qū)提供建站服務(wù)。全流程按需定制開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

$mydb

=

new

mysqli('localhost',

'username',

'password',

'databasename');

$sql

=

"INSERT

INTO

users

(fname,

lname,

comments)

VALUES

('$_POST[fname]',

'$_POST[lname]',

'$_POST[comments]')";

if

($mydb-query($sql)

==

TRUE)

{

echo

"user

entry

saved

successfully.";

}

else

{

echo

"INSERT

attempt

failed"

;

}

$mydb-close();

希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。

用php代碼怎么往數(shù)據(jù)庫里自定義插入數(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ù)庫,并通過

$_POST

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

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

INSERT

INTO

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

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

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

現(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ù)庫,并通過 $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語句,一條新的記錄會(huì)添加到數(shù)據(jù)庫表中。

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

?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ù) php如何與數(shù)據(jù)庫連接
文章位置:http://weahome.cn/article/dogcosc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部