示例#1
0
<?php

// initialize
include_once '../../../common/init.php';
if (!isLoggedInOperator()) {
    redirect('');
} elseif (isset($_POST['products'])) {
    // include needed database functions
    include_once $BASE_PATH . 'database/sales.php';
    saveSale($_POST['products'], $_POST['customercard_number'], $_POST['customercard_value'], $_POST['card_number'], $_POST['card_value'], $_POST['cash_value']);
    redirect("pages/operator");
}
<?php

// initialize
include_once '../../common/init.php';
if (!isLoggedInAdmin() && !isLoggedInOperator()) {
    redirect('');
} else {
    // include needed database functions
    include_once $BASE_PATH . 'database/products.php';
    $search = strip_tags($_POST['search']);
    if (isset($_POST['pagenr'])) {
        $pagenr = $_POST['pagenr'];
        if ($search) {
            $products = searchProductPageImage($search, $pagenr);
        } else {
            $products = getAllProductsPageImage($pagenr);
        }
        echo json_encode(array("numpages" => ceil($products[0]['count'] / $pagesize), "products" => $products));
    }
}