if (isset($_GET) && $_SERVER['REQUEST_METHOD'] == "GET") {
        /*
         * --------------------------
         *   Require/Include Files
         * -------------------------
         */
        require_once '../../class_ajax_request/classAjax.php';
        include_once '../../application/functions.php';
        include_once '../../application/DataConfig.php';
        /*
         * ----------------------
         *   Instance Class
         * ----------------------
         */
        $obj = new AjaxRequest();
        $response = $obj->searchUsersMentions($_GET['filter'], ' 
	&& U.status = "active"', 'LIMIT 5 ', $_SESSION['authenticated']);
        $countPosts = count($response);
        $countPostsTotal = count($responseTotal);
        $words = str_replace('#', '%23', strip_tags($_GET['filter']));
        if ($countPosts != 0) {
            foreach ($response as $key) {
                //============ VERIFIED
                if ($key['type_account'] == '1') {
                    $verified = ' <i class="fa fa-check-circle verified verified-min"></i>';
                } else {
                    $verified = null;
                }
                $arrayLoop[] = array('name' => stripslashes($key['name']) . $verified, 'username' => $key['username'], "avatar" => $key['avatar']);
            }
            $array = array("tags" => $arrayLoop);
            echo json_encode($array);