Example #1
0
function selectSalaryReceipt()
{
    $no = count(manage_payments::GetSalaryReceipt($_GET['Q0']));
    $temp = manage_payments::GetSalaryReceipt($_GET['Q0']);
    $temp = array_slice($temp, $_GET["start"], $_GET["limit"]);
    echo dataReader::getJsonData($temp, $no, $_GET["callback"]);
    die;
}