HI!
I compiled php4 + unixodbc, then i built apache with php as static module without problem.
I run apache fine too.
But when i try to run the following php
<head>
<title>php test</title>
</head>
<body>
<?
$dbconn = odbc_connect("SERVER","sa","sa");
if($dbconn == 0)
echo "Failed";
else
echo "Works!!!!";
?>
</body>
i get the following error message from the php parser
Fatal error: Call to undefined function: odbc_connect() in /www/htdocs/publica/index.php on line 11
Any idea?? Thanx!