Greetings.
I'm trying to do a simple script that opens a dbase file and show me some records.
I've tried this:
<?php
$dbf = dbase_open('FOO.DBF',0);
$drec = dbase_get_record_with_names($dbf,1);
echo "$drec['NAME']<br>";
echo "done."
?>
I get a blank screen as a result...
Why it doesn't work? What I'm doing wrong?
Please people, help me.
Thanks in advance.