Just downloaded/installed PHP4 from www.php.net (full version).
I am attempting to access an Oracle instance on a remote server, having only the client Oracle libraries on my workstation (SQL*PLUS works, etc.).
The php code I am executing shows the following error:
Fatal error: Call to undefined function: ora_login()
As far as I can tell, PHP has been configured to use Oracle. The extensions are set as:
extension_dir = /php/extensions
extension=php_oci8.dll
extension=php_oracle.dll
Putting phpinfo() in the source file prior to the Oracle calls shows both OCI 8 and Oracle as enabled.
Have I misconfigured something, or should I conclude that the downloadable version does not have Oracle compiled in?