Jump to content

php with dBase


mathus

Recommended Posts

as far as i can see, my syntax is correct, but im getting no output.

Tried testing with an echo command, and i get nothing after i call the dbf file.

 

$dbfile = "192.168.1.54/BPE_BACKUP/720/PT_CONTC.DBF";
$db = dbase_open($dbfile, 0) or die ("Could not open dbf file <i>$db_file</i>.");
echo "test";
if ($db) {
  $record_numbers = dbase_numrecords($db);
  for ($i = 1; $i <= $record_numbers; $i++) {
      $row = dbase_get_record_with_names($db, $i);
          echo "Member #$i: " . trim($row['name']) . "\n";
      
  }
}

 

does anyone have any tips or tricks to working with dbase?

i need to figure this out by 7/18, it was dropped on me monday.

Link to comment
https://forums.phpfreaks.com/topic/59483-php-with-dbase/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.