php-db | 2001051

Re: [PHP-DB] open foxpro database From: Abdul Kadir (akakom <email protected>)
Date: 05/02/01

Your problem is caused by file name writing (because filename is
case-sensitive). PHP can read any FoxPro's Tables (free tables or databases
tables).

Regards,
Abdul Kadir

----- Original Message -----
From: "Benny" <benny <email protected>>
To: <php-db <email protected>>
Sent: Wednesday, May 02, 2001 9:12 AM
Subject: [PHP-DB] open foxpro database

> 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>

-- 
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>