hi!
i am working on a project where i need to convert dbase data to mysql.
i am trying to open my dbase file using PHP4 with the function dbase_open(), but i get an error saying undefined function dbase_open().
my code is
<?php
$dbname="D:\Data\Central.dbf";
$result = dbase_open ($dbname,2);
$recno=dbase_numrecords ($result);
$rec = dbase_get_record($result, $recno);
$nf = dbase_numfields($db);
for ($i=0; $i < $nf; $i++)
{
print $rec[$i]."<br>\n";
}
?>
can you please help with this.
thanking you