Argg, I get up set...
I tried many post without any succes responds...
OK, keep cool.
Under win NT and when I try to launch a php3 file, I get:
Fatal error: Call to unsupported or undefined function ora_logon() in f:\program files\apache group\apache\htdocs\web\oracle3.php3 on line 15
Here is the famous oracle3.php3
<?php
$db="(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = 255.255.255.1)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = die)
)
)";
if(!($connection=ora_logon("die_user/die@$db","")))
{
echo "Couldn't logon to database.<br>";
exit();
}
else
echo "Connected to database";
ora_logoff($connection);
?>
The oci.dll added to my php.ini file..
Any ideas?