| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/search_products.php |
<?php
if ($f == 'search_products') {
$html = '';
$array = array(
'limit' => 15
);
if (!empty($_POST['c_id'])) {
$array['c_id'] = Wo_Secure($_POST['c_id']);
}
if (!empty($_POST['sub_id'])) {
$array['sub_id'] = Wo_Secure($_POST['sub_id']);
}
if (!empty($_POST['value'])) {
$array['keyword'] = $_POST['value'];
}
if (!empty($_POST['length'])) {
$array['length'] = $_POST['length'];
}
if (!empty($_POST['price_sort'])) {
$array['order_by'] = $_POST['price_sort'];
}
$result = Wo_GetProducts($array);
foreach ($result as $key => $wo['product']) {
$html .= Wo_LoadPage('products/products-list');
}
$data = array(
'status' => 200,
'html' => $html
);
header("Content-type: application/json");
echo json_encode($data);
exit();
}