Marc
|
| Posted: 06/24/2002, 11:21 PM |
|
I am working on a mailbox for the members. Just a simple database table with date, from, to, re.
The problem is how to make a reply. I receive a mail and I like to reply to the sender --> 'from' has to be 'to' and the old 're' had to filled in with the new reply. Hope someone can help.
Thanks
Marc
|
|
|
 |
Nicole
|
| Posted: 06/26/2002, 5:39 AM |
|
Marc,
I suppose you should store the parent_id for each message. All new messages has null parent_id and all responses to them has to store primary key value of parent message in parent_id field. This let you to look up email address and subject field. The similar to Forum example.
|
|
|
 |
Marc
|
| Posted: 06/27/2002, 2:03 PM |
|
Thanks for the answer. It wasn't the solution I was looking for, but it hit me upon the idea to transfer the record to another table, manipulate it there, and bring it back to original table.
|
|
|
 |
|