diff --git a/reference/maxdb/functions/maxdb-fetch-field-count.xml b/reference/maxdb/functions/maxdb-fetch-field-count.xml
deleted file mode 100644
index fc784e7d4f..0000000000
--- a/reference/maxdb/functions/maxdb-fetch-field-count.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
- maxdb_field_count
- Returns the number of columns for the most recent query
-
-
- Description
- Procedural style:
-
- intmaxdb_field_count
- resourcelink
-
-
- Returns the number of columns for the most recent query on the connection
- represented by the link parameter. This function
- can be useful when using the maxdb_store_result
- function to determine if the query should have produced a non-empty result
- set or not without knowing the nature of the query.
-
-
-
- Return values
- An integer representing the number of fields in a result set
-
-
- Example
-
-
- Procedural style
-
-
-]]>
-
-
-
-
-
-
-
diff --git a/reference/maxdb/functions/maxdb-fetch-field-seek.xml b/reference/maxdb/functions/maxdb-fetch-field-seek.xml
deleted file mode 100644
index b0edec810b..0000000000
--- a/reference/maxdb/functions/maxdb-fetch-field-seek.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
- maxdb_field_seek
-
- Set result pointer to a specified field offset
-
-
-
- Description
- Procedural style:
-
- intmaxdb_field_seek
- resourceresult
- 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("max. Len: %d\n", $finfo->max_length);
- printf("Type: %d\n\n", $finfo->type);
-
- maxdb_free_result($result);
-}
-
-/* close connection */
-maxdb_close($link);
-?>
-]]>
-
-
-
- The above examples would produce the following output:
-
-
-
-
-
-
-
-