adding a personal signature to a forum
Moderator: General Moderators
adding a personal signature to a forum
I want to add feature to a forum, namely personal signatures, but i don really know how to implement it. So, if some can help me out by providing me with code as an example or point me to a tutorial about this i would be very thankfull!
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
what I would do is have a new table called signatures and store the users id and the users signature. You could even just add this to the users table already.
And then when displaying the posts you could modify the query with an inner join to acquire the signature table along with the post itself, or if you added it to the users table simply echo out the users signature.
Post some code, perhaps we can lend you a hand if this is above your skill level.
And then when displaying the posts you could modify the query with an inner join to acquire the signature table along with the post itself, or if you added it to the users table simply echo out the users signature.
Post some code, perhaps we can lend you a hand if this is above your skill level.