Page 1 of 1
adding a personal signature to a forum
Posted: Wed May 04, 2005 6:41 am
by hossain
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!
Posted: Wed May 04, 2005 6:52 am
by John Cartwright
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.