The core is based on 11 database tables:
- $wpdb->posts - basic posts, pages and other post types info;
- $wpdb->postmeta - extra posts, pages and other post types info;
- $wpdb->comments - basic comments info;
- $wpdb->commentmeta - extra comments info;
- $wpdb->links - links info;
- $wpdb->options - options info;
- $wpdb->users - basic user info;
- $wpdb->usermeta - extra user info;
- $wpdb->terms - categories and tags
- $wpdb->term_relationships - relationship between posts and categories or tags;
- $wpdb->term_taxonomy - relationship for categories or tags;
All table names is the concatination of WordPress table prefix and table name (for example: "wp_posts"). WordPress table prefix ($wpdb->prefix) is "wp_" by default. You can change it in "wp-config.php" if you want to intall more than one WordPress site on the same database.
I'm looking for a wordpress database with 3 tables (clubb, member and category) members are linked to clup and category. The user will first input clup information and then member information and last witch categories for the members. A club can have many members and a member can bi in may categoris. Can anyone help med with this problem? hans@lovstrom.com