I'm not sure what your difficulty is here to be honest. You know how forums work right? They're not inherently complicated. The use cases are:
- Register;
- Login;
- Admin: create/remove forums;
- View list of forums;
- View messages in a forum (including pagination);
- View thread (including pagination);
- Create a new thread;
- Reply to a thread;
- Edit a post;
- View user's profile;
- Edit profile.
And that's a forum in a nutshell. Surely you can fumble your way through that right?
Optional but more sophisticated use cases include:
- Security: hiding a forum, making a forum read only;
- Maintain users (changing passwords, banning users, granting/revoking admin/moderator rights);
- Moderated: new threads must be approved by a moderator;
- Sticky threads (and unsticky);
- Signatures;
- HTML or bbcode or similar support for markup (rather than just plaintext);
- RSS feeds to forums and threads;
- Email notifications (subscribe/unsubscribe)) to nominated forums and threads;
- Lock threads (no further replies);
- etc.
You can do as much or as little of that as you like.
You can also identify the entities and attributes:
- User (username, encrypted password, name, nickname, email address, bio, signature);
- Roles (name, privileges);
- User Roles (user, role);
- Forum (name, visible roles, write permission roles);
- Thread (name, forum);
- Message (thread, post date, author, title, content);
- Message History (message, date, edited by, changed text);
- etc
And the database schema pretty much writes itself.
Anyway I'm just not sure what you're looking for out of a tutorial. For me a tutorial is to teach me something I don't know (like a new language). You know PHP (I assume?). You know how forums work (from a user point of view). There's not really much more to it.