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 https://forums.phpfreaks.com/topic/68037-remote-acces-of-oracle-db/ Share on other sites More sharing options...
trq Posted September 5, 2007 Share Posted September 5, 2007 Looks like your php is not compiled with support for oci. You might want to read the requirements section of this man page. Quote Link to comment https://forums.phpfreaks.com/topic/68037-remote-acces-of-oracle-db/#findComment-341993 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.