0
What are the table required in the database while creating a discussion forum?
2 Answers
+ 1
Could be as basic as
User(id,username)
Post(p_id,user_id,post)
Replys(r_id,p_id,user_id,reply)
0
What will be the dfd and er diagram for discussion forum ?