|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-10-12 04:52 UTC] cjbj at hotmail dot com
[2004-10-12 07:03 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 23:00:01 2025 UTC |
Description: ------------ I have tried and experience the following problem on three different systems. I have apache 2 + php + oracle8i client This is my test script called oradbinfo.php: <?php if ($c=OCILogon("user", "pass", "mydb")) { echo "Successfully connected to Oracle.\n"; } else { $err = OCIError(); echo "Oracle Connect Error " . $err[text]; }?> from the command line when I run: php oradbinfo.php I get: Successfully connected to Oracle. However, when I brows the page through http browser, I get: Fatal error: Call to undefined function: ocilogon() in /var/www/html/test.php on line 2 any clues, -thanx