请输入您要查询的百科知识:

 

词条 pg_update
释义

pg_update

(PHP 4 >= 4.3.0)

pg_update -- 更新表

说明

mixed pg_update ( resource connection, string table_name, array data, array condition [, int options])

pg_update() 用 condition 作为条件查询数据库,用 data 中的数据更新符合条件的记录。如果指定了 options,则 pg_convert() 会按照指定选项作用到 data 上。

例子 :

<?php

$db = pg_connect ('dbname=foo');

$data = array('field1'=>'AA', 'field2'=>'BB');

// This is safe, since $_POST is converted automatically

$res = pg_update($db, 'post_log', $_POST, $data);

if ($res) {

echo "Data is updated: $res\";

}

else {

echo "User must have sent wrong inputs\";

}

?>

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 22:09:16