Hi,
Is it possible to open a dBase file by referencing it from another server?
I've checked to make sure I have access to the file, and I am able to download it, now I just need to be able to pull records from it
Here's my code: (php)
PHP Code:
<?php
$table = "http://xx.xxx.xxx.xxx:81/invntry.dbf";
$db = dbase_open($table, 0);
$numRecords = dbase_numrecords($db);
$numFields = dbase_numfields($db);
dbase_close($db);
print("$numRecords\n");
print("$numFields");
?>
It keeps telling me the file cannot be opened! Grr. Anybody have any ideas on how to get around this?
Thanks!
Alan