- Uncomment the line: extension=php_oci8.dll
$db = “(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.34)(PORT = 1521)))(CONNECT_DATA=(SID=orcl)))” ;
if ($c=OCILogon(”system”, “your database password“, $db)) {
echo “Successfully connected to Oracle.\n”;
OCILogoff($c);
} else {
$err = OCIError();
echo “Connection failed.” . $err[text];
}
?>
Friday, July 10, 2009
PHP + Oracle
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment