I have a table 'requests' that stores info from a customer. Now I need to give certain users the ability to comment on these request. So I created a table called Comment.
Request
RequestKey
Request
UserKey
Comment
CommentKey
RequestKey
Comment
UserKey
I have created a page that shows all Request and a link that says "I would like to comment", where the user can go and comment on the request. Now after that user comments he is then redirected back to the page that shows all the request.
What I need is a way to make the request that the user just commented on to dissappear so that he will only see the request that he commented on. Here is a problem too another user (user2) may comment on that same request but I still need to give user1 the ability to comment.
Please help this is driving me crazy...