IsamGet Syntax IsamGet(isam_file, rec_key); isam_file A string specifying the name of the Isam file, without the file extension. rec_key A string specifying the record key. Description Retrieves a record from the specified Isam file. Returns A string containing the value of the record. If the record is not found, the string is empty. Example $return = isamget("order", "1234"); Result: $return = "1234 $45.50"
IsamGet(isam_file, rec_key);
isam_file
rec_key
$return = isamget("order", "1234");
$return = "1234 $45.50"