I am using Mandrake 8.2 apache was already installed and still can use it from what i understand since it was build dynamically
so i configure php using
--with-unixODBC
--with-sybase-ct=/opt/sybase --with-apxs
and some other configs everything works fine then i type make, everything is still going fine no errors, so i go on a type make install. once again everything is fine no errors. PHP works but sybase and unixODBC
does not work. when i use odbc_connect()
it says it isn't a correct command.
when i use mssql_connect() i get no error messages nothing happens and the echo below the command doesn't output.
example:
<?php
$db=mssql_connect("mssql_host","user, "pas");
echo("So Far so Good");
?>
No error messages and "So Far So Good" doen't get outputted. any ideas?