現(xiàn)在,我們創(chuàng)建一個(gè)
創(chuàng)新互聯(lián)建站專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、府谷網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為府谷等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
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ù)庫表中。
“INSERT INTO”語句的作用是:向一個(gè)數(shù)據(jù)庫的表中插入一條新的記錄。向一個(gè)數(shù)據(jù)庫表中插入數(shù)據(jù)“INSERT INTO”的作用是:向一個(gè)數(shù)據(jù)庫的表中插入一條新的記錄。語法INSERT INTO table_name
VALUES (value1, value2,....) 你可以在指定的列中插入數(shù)據(jù),具體如下:INSERT INTO table_name (column1, column2,...)
VALUES (value1, value2,....) 注意:SQL語句是“字母大小寫不敏感”的語句(它不區(qū)分字母的大小寫),即:“INSERT INTO”和“insert into”是一樣的。在PHP內(nèi)創(chuàng)建數(shù)據(jù)庫,我們需要在mysql_query()函數(shù)內(nèi)使用上述語句。這個(gè)函數(shù)是用來發(fā)送MySQL數(shù)據(jù)庫連接建立的請求和指令的。案例在前一章里,我們建立了一張名為“Person”的表,其中包含三個(gè)縱列:"Firstname", "Lastname" 和 "Age"。在下面的案例當(dāng)中,我們還會(huì)用到同一張表,并在其中加入兩條新的記錄:?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 person (FirstName, LastName, Age)
VALUES ('Peter', 'Griffin', '35')");mysql_query("INSERT INTO person (FirstName, LastName, Age)
VALUES ('Glenn', 'Quagmire', '33')");mysql_close($con);
把一張表中的數(shù)據(jù)插入數(shù)據(jù)庫中現(xiàn)在,我們將建立一個(gè)HTML表單;通過它我們可以向“Person”表中加入新的記錄。下面演示這個(gè)HTML表單:html
bodyform 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)一個(gè)用戶點(diǎn)擊HTML表單中的“提交submit”按鈕后,表單中的數(shù)據(jù)會(huì)發(fā)送到“insert.php”?!癷nsert.php”文件與數(shù)據(jù)庫建立連接,并通過PHP $_POST變量獲取表單中的數(shù)據(jù);此時(shí),mysql_query()函數(shù)執(zhí)行“INSERT INTO”語句,這樣,一條新的記錄就被添加到數(shù)據(jù)庫的表單當(dāng)中了。下面試“insert.php”頁面的代碼:?php
本文實(shí)例講述了php使用mysqli向數(shù)據(jù)庫添加數(shù)據(jù)的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
$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ì)有所幫助。
本文實(shí)例講述了PHP實(shí)現(xiàn)的pdo連接數(shù)據(jù)庫并插入數(shù)據(jù)功能。分享給大家供大家參考,具體如下:
創(chuàng)建配置文件
pdo_config.php
?php
$db_Type
=
"mysql";//數(shù)據(jù)庫類型
$host
=
"localhost";//主機(jī)名
$dbName
=
"test";//數(shù)據(jù)庫名
$userName
=
"root";//用戶名
$password
=
"root";//密碼
$dsn
=
"{$db_Type}:host={$host};dbname={$dbName}";
?
pdo插入數(shù)據(jù)庫
pdo_insert.php
?php
header('Content-type:text/html;
charset=utf-8');
require
'pdo_config.php';
try{
$pdo
=
new
PDO
($dsn,$userName,$password);//創(chuàng)建一個(gè)連接對(duì)象
$pdo-exec('set
names
utf8');//設(shè)置編碼
$sql
=
"INSERT
student
(name,email)
VALUES
('李四','123@qq.com')";
$pdo-exec($sql);
}catch
(PDOException
$e){
die('操作失敗'.$e-getMessage());
}
//關(guān)閉連接
$pdo
=
null;
?
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP基于pdo操作數(shù)據(jù)庫技巧總結(jié)》、《php+mysqli數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:關(guān)于php連接mssql:pdo
odbc
sql
serverPHP5中使用PDO連接數(shù)據(jù)庫的方法PHP中PDO連接數(shù)據(jù)庫中各種DNS設(shè)置方法小結(jié)ThinkPHP框架基于PDO方式連接數(shù)據(jù)庫操作示例PHP使用ODBC連接數(shù)據(jù)庫的方法tp5(thinkPHP5)框架連接數(shù)據(jù)庫的方法示例PHP7使用ODBC連接SQL
Server2008
R2數(shù)據(jù)庫示例【基于thinkPHP5.1框架】tp5(thinkPHP5)操作mongoDB數(shù)據(jù)庫的方法thinkPHP5實(shí)現(xiàn)數(shù)據(jù)庫添加內(nèi)容的方法tp5(thinkPHP5)框架數(shù)據(jù)庫Db增刪改查常見操作總結(jié)PHP利用pdo_odbc實(shí)現(xiàn)連接數(shù)據(jù)庫示例【基于ThinkPHP5.1搭建的項(xiàng)目】
php
mysql
insert
into
結(jié)合詳解
ySQL
INSERT
INTO語句在實(shí)際應(yīng)用中是經(jīng)常使用到的語句,所以對(duì)其相關(guān)的內(nèi)容還是多多掌握為好。
向數(shù)據(jù)庫表插入數(shù)據(jù)
INSERT
INTO
語句用于向數(shù)據(jù)庫表添加新記錄。
語法
INSERT
INTO
table_name
VALUES
(value1,
value2,....)
您還可以規(guī)定希望在其中插入數(shù)據(jù)的列:
INSERT
INTO
table_name
(column1,
column2,...)
VALUES
(value1,
value2,....)
注釋:SQL
語句對(duì)大小寫不敏感。INSERT
INTO
與
insert
into
相同。
1.insert語句一次可以插入多組值,每組值用一對(duì)圓括號(hào)括起來,用逗號(hào)分隔,如下:
insert
into
`news`(title,body,time)
values('title
1','body
1',now()),('title
2','body
2',now());
2.Insert
Select
語句,將查詢的結(jié)果插入到新的表,顧名思義,它由一條insert語句和一條select語句組成
insert
into
news_one(id,title,body,time)
select
id,title,body,time
from
news_two;
要注意的是,這兩個(gè)表的結(jié)構(gòu)要完全相同,列名可以不同。
在php中使用方法
下面是
"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)
?
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
?php
//?以?MySQL?為例:
mysql_connect('127.0.0.1',?'root',?'root',?3306);??//?連接數(shù)據(jù)庫
mysql_select_db('test');???????????????????????????//?選擇數(shù)據(jù)庫
mysql_query('set?names?utf8');?????????????????????//?執(zhí)行SQL
//?插入數(shù)據(jù)語句
$sql?=?"INSERT?INTO?table?(username,?password)?VALUES?('Jack@163.com',?'123456')";
$r?=?mysql_query($sql);
if?(mysql_affected_rows())?{
echo?'新增成功';
}?else?{
echo?mysql_error();
}