I am trying to connect to a dbf database but it gives me error
:Fatal error: Call to undefined function: dba_open() in c:/program files/apache group/apache/htdocs/dbfmysql/dba_test.php3 on line 5
My codes are as below :
<?
$dbpath = "Acedata1.dbf";
$dbtype = "db2";
$db = dba_open($dbpath, "r", $dbtype);
if(!$db) {
echo "Database open failed";
return -1;
}
?>
Please do tell me where I made a mistake.
Thanks in advance.
Regards,
Ganesh