如何在PHP中使用Oracle数据库(4)
2015-01-24信息快讯网
同上,只不过用OCI来写
相关PHP代码:
if ($submit == "click"){
// The submit button was clicked!
// Get the input for fullname and email then store it in the database.
PutEnv("ORACLE_SID=ORASID");
$connection = OCILogon ("username","password");
if ($connection == false){
echo OCIError($connection)."
";
exit;
}
$query = "insert into email_info values ('$fullname', '$email')";
$cursor = OCIParse ($connection, $query);
if ($cursor == false){
echo OCIError($cursor)."
";
exit;
}
$result = OCIExecute ($cursor);
if ($result == false){
echo OCIError($cursor)."
";
exit;
}
OCICommit ($connection);
OCILogoff ($connection);
}
else{
echo '
<FORM action=insert.php method=post>
请输入姓名
<INPUT name=fullname></INPUT>
请输入 Email 地址
<INPUT name=email></INPUT>
<INPUT name=submit type=submit value=click></INPUT>
</FORM>
';
}
?>
对了,这段脚本必须存为insert.php,因为在调用的页面中指定insert.php为表单处理程序
php中cookie的作用域
简单的PHP图片上传程序
php中变量及部分适用方法
php Undefined index和Undefined variable的解决方法
php.ini中的php-5.2.0配置指令详解
php中用文本文件做数据库的实现方法
Discuz! Passport 通行证整合
FCKeditor添加自定义按钮
PHP连接access数据库
php实现mysql数据库备份类
asp和php下textarea提交大量数据发生丢失的解决方法
支持php4、php5的mysql数据库操作类
使用 eAccelerator加速PHP代码的方法
实现php加速的eAccelerator dll支持文件打包下载
用windows下编译过的eAccelerator for PHP 5.1.6实现php加速的使用方法
oracle资料库函式库
如何在PHP中使用Oracle数据库(6)
如何在PHP中使用Oracle数据库(5)
人大复印资料处理程序_补充篇
如何在PHP中使用Oracle数据库(3)
如何在PHP中使用Oracle数据库(1)
BBS(php & mysql)完整版(八)
发挥语言的威力--融合PHP与ASP
如何在PHP中使用Oracle数据库(2)
用PHP连接Oracle for NT 远程数据库
用PHP4访问Oracle815
简单易用的计数器(数据库)