Snippet Name: PHP: connect to an Oracle database
Description: This code connects to an Oracle database defined by TNSNAME, using the userid user and password password. Upon successful connection, the function Ora_Logon returns a non-zero connection identifier, which we store in the variable $conn.
Comment: (none)
Language: PHP, ORACLE
Highlight Mode: PHP
Last Modified: February 27th, 2009
|
<?PHP
IF ($conn=Ora_Logon("user@TNSNAME","password")) {
ECHO "<B>SUCCESS ! Connected to database<B>\n";
} ELSE {
ECHO "<B>Failed :-( Could not connect to database<B>\n";
}
Ora_Logoff($conn);
?>
|