here is what i have in my .php:
include ('adodb/adodb.inc.php');
include ('adodb/tohtml.inc.php');
print 'OK <BR>';
putenv('ORACLE_HOME=C:/oracle/ora81');
$conn = &ADONewConnection ('oci8');
print 'OK ConnectionType <BR>';
$conn->PConnect('','user','user','BDTest');
print 'OK ConnectionDone <BR>';
$recordSet = &$conn->Execute('select * from noms');
print 'OKExecuteDone <BR>';
rs2html($recordSet);
--------------Here is what in my browser :
OK
OK ConnectionType
Fatal error: Call to undefined function: ociplogon() in c:\dvl\adodb\adodb-oci8.inc.php on line 174
WHY ?