Good,
$stmt2 = $con->prepare("SELECT SUM(product_qty) AS value FROM public_order_checklist WHERE order_code = '$order_code'");
$stmt2->execute();
$stmt2->bind_result($value);
$stmt2->store_result();
$rowsx = $stmt2->fetch();
I would like to get the result of the total of all the "order_code" codes, But .. error appears:
Notice: Trying to get property of non-object in D:\xampp\htdocs\Superfacil_v1.4.6\inc\colaborator\delivery.php on line 374
Linha: $rows = $stmt->fetch();