php-db | 2001051
Date: 05/02/01
- Next message: Steve Brett: "[PHP-DB] creating a downloadable file ..."
- Previous message: Mikail: "[PHP-DB] mysql-php"
- Next in thread: Benny: "[PHP-DB] open foxpro database"
- Maybe reply: Benny: "[PHP-DB] open foxpro database"
- Maybe reply: Benny: "[PHP-DB] open foxpro database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at http://www.eudoramail.com
-- 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>
- Next message: Steve Brett: "[PHP-DB] creating a downloadable file ..."
- Previous message: Mikail: "[PHP-DB] mysql-php"
- Next in thread: Benny: "[PHP-DB] open foxpro database"
- Maybe reply: Benny: "[PHP-DB] open foxpro database"
- Maybe reply: Benny: "[PHP-DB] open foxpro database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

