How can I open files and tables with extensions .DAT
and .IDX
using php?
I am making a web application and I need to extract data from a database created by another program but I have not been able to do it, the files of the tables are saved in files with dat
and idx
, here is the script that I use to try to connect but it does not give me an error but if it stays loading please if you can help me
<?php
$db = odbc_connect("DRIVER={DBISAM 4 ODBC Driver}; ConnectionType=Local; CatalogName=C:\direcciondelacarpetadondeseguardanlastablas\Data;","","");
$res = odbc_exec($db,"SELECT * FROM customers");
echo odbc_num_rows($res)." rows found";
while($row = odbc_fetch_array($res)) {
print_r($row);
}
?>