Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/search-blog.php

<?php 
if ($f == 'search-blog') {
    $html = '';
    if (isset($_POST['keyword'])) {
        $pages = Wo_GetBlogs(array(
            "limit" => 20,
            'keyword' => $_POST['keyword']
        ));
        if (count($pages) > 0) {
            foreach ($pages as $key => $wo['article']) {
                $wo['article']['first'] = ($key == 0) ? true : false;
                $html .= Wo_LoadPage('blog/includes/card-list');
            }
            if (!empty($html)) {
                $data['status'] = 200;
                $data['html']   = $html;
            }
        } else {
            $data = array(
                'status' => 400,
                'message' => $wo['lang']['no_blogs_found']
            );
        }
    }
    header("Content-type: application/json");
    echo json_encode($data);
    exit();
}