$sqlA="update table_name set content=:CONTENT where newsid='$NewsID'";
$conn = OCILogon("scott", "tiger");
$conn = OCIParse($conn,$sqlA);
OCIBindByName($conn, ':CONTENT', &$ContentTmp,-1);
OCIExecute($conn);
其中:$ContentTmp中为大文本的具体内容。
|
![]() |
|
| PHP技术首页 | PHP基础 | PHP应用 | PHP技巧 | PHP函数 | 网络相关 | XML应用 | 图像处理 | 数据库相关 | 文件处理 | 邮件处理 | 系统相关 | PHP安装 | 其它文章 | 分类 | 专题 | 留言本 | 投稿 | 搜索 |
$sqlA="update table_name set content=:CONTENT where newsid='$NewsID'";
$conn = OCILogon("scott", "tiger");
$conn = OCIParse($conn,$sqlA);
OCIBindByName($conn, ':CONTENT', &$ContentTmp,-1);
OCIExecute($conn);
其中:$ContentTmp中为大文本的具体内容。