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

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

php的數(shù)據(jù)的修改方法 php的數(shù)據(jù)的修改方法是什么

php怎么修改數(shù)據(jù)?

一般是如下:

10年積累的網(wǎng)站建設(shè)、成都做網(wǎng)站經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先做網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有望城免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

?php

if

(mysql_connect('127.0.0.1','root','123456')){//數(shù)據(jù)庫地址、用戶、密碼

$sql="update

db.tab

set

f='v'

where

id='123'";//SQL你自己會寫的

if

(mysql_query($sql))

echo

"SQL執(zhí)行成功!";

else

echo

"SQL($sql)執(zhí)行失?。≡颍?.mysql_error();

}else

echo

'連接數(shù)據(jù)庫失敗,原因:'.mysql_error();

?

PHP數(shù)據(jù)修改

這個說起來長篇,你所問的$updateSQL = $db-GetUpdateSQL其實并不是屬于php自己的東西,而是用戶自定義的類,至于類是什么去看看基礎(chǔ)的php語言基礎(chǔ).

所以你要知道GetUpdateSQL返回的究竟是什么東西,他是怎么工作的,就要找到類的本身代碼所在文件,去看看他里面究竟是什么東西.

而php修改數(shù)據(jù)庫里的東西其實是沒有專用語句的.如果硬要問怎么實現(xiàn)的話,就是那個$db-Execute($updateSQL);

所以建議你把$updateSQL print(或echo)出屏幕看看里面是什么就明白了.

其實是個SQL的操作語句,指示SQL如何存儲數(shù)據(jù),而$db-Execute只讓php把這個命令傳給SQL

PHP CI框架修改數(shù)據(jù)的方法

CI框架下的PHP增刪改查總結(jié):

controllers下的 cquery.php文件

[php] view plain copy

?php

class CQuery extends Controller {

//構(gòu)造函數(shù)

function CQuery() {

parent::Controller();

// $this-load-database();

}

function index() {

//調(diào)用model 其中train為外層文件夾 MQuery為model名稱 queryList為重命名

$this-load-model('train/MQuery','queryList');

//獲得返回的結(jié)果集 這里確定調(diào)用model中的哪個方法

$result = $this-queryList-queryList();

//將結(jié)果集賦給res

$this-smarty-assign('res',$result);

//跳轉(zhuǎn)到顯示頁面

$this-smarty-view('train/vquery.tpl');

}

//進(jìn)入新增頁面

function addPage() {

$this-smarty-view('train/addPage.tpl');

}

//新增

function add() {

//獲得前臺數(shù)據(jù)

//用戶名

$memberName = $this-input-post('memberName');

//密碼

$password = $this-input-post('password');

//真實姓名

$userRealName = $this-input-post('userRealName');

//性別

$sex = $this-input-post('sex');

//出生日期

$bornDay = $this-input-post('bornDay');

//e_mail

$eMail = $this-input-post('eMail');

//密碼問題

$question = $this-input-post('question');

//密碼答案

$answer = $this-input-post('answer');

//調(diào)用model

$this-load-model('train/MQuery','addRecord');

//向model中的addRecord傳值

$result = $this-addRecord-addRecord($memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer);

//判斷返回的結(jié)果,如果返回true,則調(diào)用本頁的index方法,不要寫 $result == false 因為返回的值未必是false 也有可能是""

if ($result) {

$this-index();

} else {

echo "add failed.";

}

}

//刪除

function deletePage() {

//獲得ID

$deleteID = $this-uri-segment(4);

//調(diào)用model

$this-load-model('train/MQuery','delRecord');

//將值傳入到model的delRecord方法中

$result = $this-delRecord-delRecord($deleteID);

//判斷返回值

if ($result) {

$this-index();

} else {

echo "delect failed.";

}

}

//修改先查詢

function changePage() {

$changeID = $this-uri-segment(4);

$this-load-model('train/MQuery','changeRecord');

$result = $this-changeRecord-changeRecord($changeID);

//將結(jié)果集賦給res

$this-smarty-assign('res',$result);

//跳轉(zhuǎn)到顯示頁面

$this-smarty-view('train/changePage.tpl');

}

//修改

function change() {

//獲得前臺數(shù)據(jù)

//ID

$ID = $this-input-post('id');

//用戶名

$memberName = $this-input-post('memberName');

//密碼

$password = $this-input-post('password');

//真實姓名

$userRealName = $this-input-post('userRealName');

//性別

$sex = $this-input-post('sex');

//出生日期

$bornDay = $this-input-post('bornDay');

//e_mail

$eMail = $this-input-post('eMail');

//密碼問題

$question = $this-input-post('question');

//密碼答案

$answer = $this-input-post('answer');

//調(diào)用model

$this-load-model('train/MQuery','change');

//向model中的change傳值

$result = $this-change-change($ID,$memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer);

//判斷返回的結(jié)果,如果返回true,則調(diào)用本頁的index方法,不要寫 $result == false 因為返回的值未必是false 也有可能是""

if ($result) {

$this-index();

} else {

echo "change failed.";

}

}

}

models中的 mquery.php 文件

[php] view plain copy

?php

class MQuery extends Model {

//構(gòu)造函數(shù)

function MQuery() {

parent::Model();

//連接數(shù)據(jù)庫

$this-load-database();

}

//查詢列表

function queryList() {

//防止select出的數(shù)據(jù)存在亂碼問題

//mysql_query("SET NAMES GBK");

//SQL語句

$sql = "SELECT ID,member_name,sex,e_mail FROM user_info_t";

//執(zhí)行SQL

$rs = $this-db-query($sql);

//將查詢結(jié)果放入到結(jié)果集中

$result = $rs-result();

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

$this-db-close();

//將結(jié)果集返回

return $result;

}

//新增

function addRecord($memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer) {

//防止select出的數(shù)據(jù)存在亂碼問題

//mysql_query("SET NAMES GBK");

//SQL語句

$sql = "INSERT INTO user_info_t (member_name,password,user_real_name,sex,born_day,e_mail,question,answer) " .

"VALUES ('$memberName','$password','$userRealName','$sex','$bornDay','$eMail','$question','$answer')";

//執(zhí)行SQL

$result = $this-db-query($sql);

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

$this-db-close();

//返回值

return $result;

}

//刪除

function delRecord($deleteID) {

//防止select出的數(shù)據(jù)存在亂碼問題

//mysql_query("SET NAMES GBK");

$sql = "DELETE FROM user_info_t WHERE ID = $deleteID";

$result = $this-db-query($sql);

$this-db-close();

return $result;

}

//修改前查詢

function changeRecord($changeID) {

//防止select出的數(shù)據(jù)存在亂碼問題

//mysql_query("SET NAMES GBK");

$sql = "SELECT ID,member_name,password,user_real_name,sex,born_day,e_mail,question,answer FROM user_info_t WHERE ID = $changeID";

//執(zhí)行SQL

$rs = $this-db-query($sql);

$result = $rs-row();//$result = $rs[0]

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

$this-db-close();

//將結(jié)果集返回

return $result;

}

//修改

function change($ID,$memberName,$password,$userRealName,$sex,$bornDay,$eMail,$question,$answer) {

//防止select出的數(shù)據(jù)存在亂碼問題

//mysql_query("SET NAMES GBK");

//SQL語句

$sql = "update user_info_t set member_name = '$memberName',password = '$password', user_real_name = '$userRealName'," .

"sex = '$sex',born_day = '$bornDay',e_mail = '$eMail',question = '$question',answer = '$answer'" .

"where ID = $ID";

//執(zhí)行SQL

$result = $this-db-query($sql);

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

$this-db-close();

//返回值

return $result;

}

}

views 下的 addPage.tpl文件

[php] view plain copy

html

head

/head

bodyform action="{{site_url url='train/cquery/add'}}" method="post"

table border='1'

tr

td用戶名/td

tdinput type="text" class="text" name="memberName" id="memberName"http://td

/tr

tr

td密碼/td

tdinput type="text" class="text" name="password" id="password"http://td

/tr

tr

td真實姓名/td

tdinput type="text" class="text" name="userRealName" id="userRealName"http://td

/tr

tr

td性別/td

tdinput type="text" class="text" name="sex" id="sex"http://td

/tr

tr

td出生日期/td

tdinput type="text" class="text" name="bornDay" id="bornDay"http://td

/tr

tr

tde_mail/td

tdinput type="text" class="text" name="eMail" id="eMail"http://td

/tr

tr

td密碼問題/td

tdinput type="text" class="text" name="question" id="question"http://td

/tr

tr

td密碼答案/td

tdinput type="text" class="text" name="answer" id="answer"http://td

/tr

/table

table

tr

tdinput type="submit" class="button" name="OK" value="提交" /

/td

/tr

/table/form

/body

/html

php數(shù)據(jù)庫添加、刪除、修改數(shù)據(jù)(mysql)

一、PHP操作MySql數(shù)據(jù)庫

新增數(shù)據(jù)

?php

$query

=

"INSERT

INTO

grade

(name,email,point,regdate)

VALUE

('

李三','yc60.com@gmail.com',,NOW())"

;

@mysql_query($query)

or

die(

'添加數(shù)據(jù)出錯:'

.mysql_error());

?

修改數(shù)據(jù)

?php

$query

=

"UPDATE

grade

SET

name='小可愛'

WHERE

id=6"

;

@mysql_query($query)

or

die(

'修改出錯:'

.mysql_error());

?

刪除數(shù)據(jù)

?php

$query

=

"DELETE

FROM

grade

WHERE

id=6";

@mysql_query($query)

or

die(

'刪除錯誤:'

.mysql_error());

?

顯示數(shù)據(jù)

?php

$query

=

"SELECT

id,name,email,point

FROM

grade";

$result

=

@mysql_query($query)

or

die(

'查詢語句出錯:'

.mysql_error());

while

(!!

$row

=

mysql_fetch_array($result))

{

echo

$row[

'id'

].

'----'

.$row['name'

].'----'

.$row

['email'

].

'----'

.$row['point'

];

echo

'br

/

';

}

?

二、其他常用函數(shù)

mysql_f

etch_row()

:從結(jié)果集中取得一行作為枚舉數(shù)組

mysql_f

etch_assoc()

從結(jié)果集中取得一行作為關(guān)聯(lián)數(shù)組

mysql_f

etch_array()

從結(jié)果集中取得一行作為關(guān)聯(lián)數(shù)組,或數(shù)字?jǐn)?shù)組,或二者兼有

mysql_f

etch_lengths

()

取得結(jié)果集中每個輸出的長度

mysql_f

ield_name():

取得結(jié)果中指定字段的字段名

mysql_num_rows():

取得結(jié)果集中行的數(shù)目

mysql_num_f

ields():取得結(jié)果集中字段的數(shù)目

mysql_get_client_inf

o()

取得

MySQL

客戶端信息

mysql_get_host_info():

取得

MySQL

主機(jī)信息

mysql_get_proto_info():

取得

MySQL

協(xié)議信息

mysql_get_server_inf

o()

取得

MySQL

服務(wù)器信息


當(dāng)前題目:php的數(shù)據(jù)的修改方法 php的數(shù)據(jù)的修改方法是什么
鏈接分享:http://weahome.cn/article/doppccc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部