hi friends .
i am trying to connect to oracle database with php in win32.
following is the error :
Fatal error: Call to undefined function: ocilogon() in e:\inetpub\wwwroot\orcl.php on line 2
PHP Warning: Unknown(): Unable to load dynamic library './extensions/php_oci8.dll' - The specified procedure could not be found. in Unknown on line 0
php code is as follows:
<?php
if ($c=OCILogon("scott", "tiger", "")) {
echo "Successfully connected to Oracle.\n";
OCILogoff($c);
} else {
$err = OCIError();
echo "Oracle Connect Error " . $err[text];
}
?>
i have uncommented both the extension files :
php_oci8.dll
php_oracle.dll
pl. share ur experience with me.
regards,
nehal