Example #1
0
    //////////////////////
    $Product = new Products();
    $Product->pname = $name_product;
    $Product->productPicture = $upimage;
    $Product->price = $price_prodect;
    $Product->available = '1';
    $Product->cid = $category;
    //////////////
    //  $product->updatecolumn('pname',$Product->pname);
} else {
    if ($_GET['code'] == "2") {
        $product = new Products();
        $product->pid = $_GET['pid'];
        $Op = new orderProducts();
        $Op->pid = $_GET['pid'];
        $Op->deleteByPID();
        $product->delete();
    }
}
$limit = isset($_GET['limit']) ? $_GET['limit'] : 0;
$res = $product->selectLimit($limit, 4);
$productsArray = array();
for ($i = 0; $i < count($res); $i++) {
    $productsArray[$i]['pid'] = $res[$i][0];
    $productsArray[$i]['name'] = $res[$i][1];
    $productsArray[$i]['price'] = $res[$i][3];
    $productsArray[$i]['image'] = $res[$i][2];
}
$replayArr["limit"] = $limit;
$replayArr["allRowsNum"] = count($totalRes);
$replayArr["productsArray"] = $productsArray;