shyami Posted September 5, 2007 Share Posted September 5, 2007 Hi all, In my system php & mysql is running fine, now i need to use oracle db, it is in some other system so i wrote a code like this if(!$connection){ // This is to ensure that we connect only if we didn't already connect if(($connection=OCIPLogon("admin","OrangeM3dhas","(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.36.225)(PORT = 1521)) (CONNECT_DATA = (SID = isas) (SERVICE_NAME = isas.iiit.ac.in) ) )"))==false){ display_error("The system was unable to establish connection.<br/> Please try after sometime."); exit; } it is giving error message "PHP Fatal error: Call to undefined function: ociplogon() in /var/www/html/functions.php on line 2" How to solve this? Thanks in advance Shyami Quote Link to comment Share on other sites More sharing options...
cjbj Posted September 25, 2007 Share Posted September 25, 2007 You'll need to enable the oci8 extension. Read the free Underground PHP and Oracle Manual at http://www.oracle.com/technology/tech/php/pdf/underground-php-oracle-manual.pdf Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.