Exemplo n.º 1
0
function DEC_PAY_GET_LIST()
{
    $where = " where list_type =" . DEC_PAY_GET_LIST;
    $where .= dataReader::makeOrder();
    $temp = manage_pay_get_lists::GetAll($where);
    $no = count($temp);
    $temp = array_slice($temp, $_GET["start"], $_GET["limit"]);
    echo dataReader::getJsonData($temp, $no, $_GET["callback"]);
    die;
}