dbase_get_record_with_names
dbase_get_record_with_names
Gets a record from a database as an associative array
array **dbase_get_record_with_names** resource $database int $number
Gets a record from a dBase database as an associative array.
database
The database resource, returned by
or .
dbase_open``dbase_create
number
The index of the record between and
.
1``dbase_numrecords($dbase_identifier)
An associative array with the record. This will also include a key named
which is set to 1 if the record has been marked
for deletion (see ).
Therefore it is not possible to retrieve the value of a field named
with this function.
deleted``dbase_delete_record``deleted
On error, will return false.
dbase_get_record_with_names
Voorbeeld: Listing all the registered members in the database
<?php
// open in read-only mode
$db = dbase_open('/tmp/test.dbf', 0);
if ($db) {
$record_numbers = dbase_numrecords($db);
for ($i = 1; $i <= $record_numbers; $i++) {
$row = dbase_get_record_with_names($db, $i);
if ($row['ismember'] == 1) {
echo "Member #$i: " . trim($row['name']) . "\n";
}
}
}
?>
dbase_get_record