Justtechjobs.com Find a programming school near you






Online Campus Both


php-db | 2001051

[PHP-DB] open foxpro database From: Benny (benny <email protected>)
Date: 05/02/01

I used function dbase_xxx to access foxpro database (.dbf) but it's not
work.
Here is my code :
  <?
  if (dbase_open("/home/benny/test/employee.dbf",0)) {
    for ($i=1; $i<=dbase_numrecords($open); $i++) {
      $rec = dbase_get_record($db, $i);
      $nf = dbase_numfields($db);
      for ($j=0; $j < $nf; $j++) {
        print $rec[$j]."<br>\n";
      }
    }
  }
  ?>
Everytime I call this page there's a message :
        Warning: unable to open database /home/benny/test/employee.dbf in
/home/benny/htdocs/foxpro.php on line 2
I used php 4.0.4 and Visual Fox Pro 5.0.
Before that I have mounted my foxpro dbf file to my linux in the
/home/benny/test directory.
Is there anything wrong?
Anyone could help me?

Regards;

Benny.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-db-unsubscribe <email protected>
For additional commands, e-mail: php-db-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>