maxdb_field_seek Set result pointer to a specified field offset Description Procedural style: intmaxdb_field_seek objectresult intfieldnr Sets the field cursor to the given offset. The next call to maxdb_fetch_field will retrieve the field definition of the column associated with that offset. To seek to the beginning of a row, pass an offset value of zero. Return values maxdb_field_seek returns previuos value of field cursor. See also maxdb_fetch_field Example Procedural style name); printf("Table: %s\n", $finfo->table); printf("max. Len: %d\n", $finfo->max_length); printf("Flags: %d\n", $finfo->flags); printf("Type: %d\n\n", $finfo->type); maxdb_free_result($result); } /* close connection */ maxdb_close($link); ?> ]]> The above examples would produce the following output: