Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 20th, 2012  |  syntax: None  |  size: 0.92 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Tracking a conversation in PHP MYSQL
  2. person 'hi how are you?'          stat_id = 1 rep_to_stat_id = blank
  3.     me 'ok, and you?'             stat_id = 2 rep_to_stat_id = 1
  4. person 'are you stalking me'      stat_id = 3 rep_to_stat_id = 2
  5.     me 'no you are stalking me'   stat_id = 4 rep_to_stat_id = 3
  6.        
  7. person    text                       conversation_id    reply_num
  8. ------------------------------------------------------------------
  9. 0         "Hi"                       0                  0
  10. 1         "Hello, who are you"       0                  1
  11. 0         "I am a bot"               0                  2
  12. 1         "Goodbye"                  0                  3
  13. 0         "Hi"                       1                  0           //new conversation thread
  14. 1         "who is this?"             1                  1
  15. 0         "This is a bot"            1                  2
  16. 1         "leave me alone"           1                  3