I have a UNIX TRU64, an apache 1.3.12 and php 4.1.2, Oracle 8.1.6
I want to connect to Oracle via ODBC.
I have prepared php like:
./configure --with-mysql --with-apache=../apache_1.3.12 --enable-track-vars
and have configured and make, make install the apache.
php suceeds on the apache with simple php-scripts like echo "Hello world";
, but when I try to connect via odbc like:
echo "Hello";
$db = odbc_connect($sqldb, $sqluser, $sqlpwd) ;
the httpd returns no bytes at all, not even Hello. So the odbc-features dont work.
Does anybody have an idea, who I have to configure php and httpd, that I can connect.