php-db | 2001051
Date: 05/02/01
- Next message: Abdul Kadir: "Re: [PHP-DB] open foxpro database"
- Previous message: Scott Bernard: "RE: [PHP-DB] open foxpro database"
- In reply to: Scott Bernard: "RE: [PHP-DB] open foxpro database"
- Next in thread: Benny: "[PHP-DB] open foxpro database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Thank's a lot.
I make the employee.dbf free table. And it's work.
Regards;
Benny.
-----Original Message-----
From: Scott Bernard [mailto:scotty <email protected>]
Sent: 03 Mei 2001 8:44
To: Benny; php-db <email protected>; php-general <email protected>
Subject: [PHP] RE: [PHP-DB] open foxpro database
Try it again, but make the employee.dbf free table, or just making it
foxplus.
-----Mensaje original-----
De: Benny [mailto:benny <email protected>]
Enviado el: Miércoles, 02 de Mayo de 2001 07:03 a.m.
Para: php-db <email protected>; php-general <email protected>
Asunto: [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 General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-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>
- Next message: Abdul Kadir: "Re: [PHP-DB] open foxpro database"
- Previous message: Scott Bernard: "RE: [PHP-DB] open foxpro database"
- In reply to: Scott Bernard: "RE: [PHP-DB] open foxpro database"
- Next in thread: Benny: "[PHP-DB] open foxpro database"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

