Quick Search:
 
 Oracle PL/SQL: PHP: connect to an Oracle database Jump to:  
Category: >> Oracle PL/SQL >> PHP: connect to an Oracle database  

<< lastnext >>

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);
 
?>
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org