query("SELECT * FROM notice_rooms WHERE owner_id = '".$_SESSION['user_id']."' and room_type = 'help'");
if(count($checkRoom) == 0){
$createRoom = $db->query("INSERT INTO notice_rooms(chat_name,owner_id,room_type) VALUES ('Help', '".$_SESSION['user_id']."', 'help')");
$room_id = $db->lastInsertId();
}else{
$room_id = $checkRoom[0]["room_id"];
}
$data = $db->query("SELECT notice_messages.message_id as message_id, notice_messages.message as message, notice_messages.from_id as from_id, notice_messages.created_on as created_on, notice_messages.chat_type as chat_type, notice_messages.mime as mime FROM `notice_messages` join notice_room_message on notice_messages.message_id = notice_room_message.message_id WHERE notice_room_message.room_id = '".$room_id."' && notice_messages.message_id > '".$id."'");
$counts = 0;
$html = "";
if(count($data) > 0){
foreach ($data as $key => $value) {
if(date("Y-m-d", strtotime($request->get('last_date'))) <> date("Y-m-d", strtotime($value['created_on']))) {
if($counts == 0){
$counts = 1;
$prev_date = date("Y-m-d", strtotime($value['created_on']));
$html .= '