@@ -26,19 +26,22 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | public function replyTo($msg) |
| 28 | 28 | { |
| 29 | - if(!empty($msg)) //checks for the value send |
|
| 29 | + if(!empty($msg)) { |
|
| 30 | + //checks for the value send |
|
| 30 | 31 | { |
| 31 | 32 | $userId = $msg->userId; |
| 33 | + } |
|
| 32 | 34 | $receiverID = $msg->name; //stores id of the person whom message is to be sent |
| 33 | 35 | $identifier = ""; |
| 34 | 36 | |
| 35 | - if($receiverID > $userId) // geneate specific unique code to store messages |
|
| 37 | + if($receiverID > $userId) { |
|
| 38 | + // geneate specific unique code to store messages |
|
| 36 | 39 | { |
| 37 | 40 | $user1 = $userId; |
| 41 | + } |
|
| 38 | 42 | $user2 = $receiverID; |
| 39 | 43 | $identifier = $userId . ":" . $receiverID; |
| 40 | - } |
|
| 41 | - else |
|
| 44 | + } else |
|
| 42 | 45 | { |
| 43 | 46 | $user1 = $receiverID; |
| 44 | 47 | $user2 = $userId; |
@@ -57,19 +60,22 @@ discard block |
||
| 57 | 60 | $query = "SELECT * from login where login_id = '$receiverID'"; |
| 58 | 61 | |
| 59 | 62 | $result = $this->connect->query($query); |
| 60 | - if($result->num_rows > 0) // if true |
|
| 63 | + if($result->num_rows > 0) { |
|
| 64 | + // if true |
|
| 61 | 65 | { |
| 62 | 66 | //check whether he is sending message for thr first time or he has sent messages before |
| 63 | 67 | $query = "SELECT * from total_message where identifier = '$identifier'"; |
| 68 | + } |
|
| 64 | 69 | $result = $this->connect->query($query); |
| 65 | - if($result->num_rows > 0) // if he has sent messages before |
|
| 70 | + if($result->num_rows > 0) { |
|
| 71 | + // if he has sent messages before |
|
| 66 | 72 | { |
| 67 | 73 | // Update Total_Message Table |
| 68 | 74 | $query = "UPDATE total_message SET total_messages = total_messages+1, time = '$time', unread = 1, id = '$time_id' WHERE identifier = '$identifier'"; |
| 75 | + } |
|
| 69 | 76 | return $this->updateMessages($query, $identifier, $reply, $userId, $time); |
| 70 | 77 | |
| 71 | - } |
|
| 72 | - else // if he sends message for the first time |
|
| 78 | + } else // if he sends message for the first time |
|
| 73 | 79 | { |
| 74 | 80 | // insert Details in Total_Message Table |
| 75 | 81 | $query = "INSERT into total_message values('$identifier', 1, '$user1', '$user2', 1, '$time', '$time_id')"; |