dbase_get_record_with_names()
dbase_get_record_with_names - Gets a record from a database as an associative array
Syntax
array dbase_get_record_with_names (
int $dbase_identifier,
int $record_number)
Arguments
- dbase_identifier - The database link identifier, returned by dbase_open() or dbase_create().
- record_number - The index of the record.
Description
Gets a record from a dBase database as an associative array.
Version
PHP 4, 5
Return value
An associative array with the record. This will also include a key named deletedwhich is set to 1 if the record has been marked for deletion (see dbase_delete_record()).