orders_vendor.php
6: $sql = mysqli_fetch_assoc(mysqli_query($con,"SELECT * FROM order_master"));
7: $product_id= $sql['product_id'];
8: $added_by = mysqli_fetch_assoc(mysqli_query($con,"SELECT * FROM product WHERE id = '$product_id' AND added_by='".$_SESSION['ADMIN_ID']."'"));
9: $order_row = mysqli_query($con,"select * from order_master where product_id = '".$added_by['id']."'");
Error
Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\farm\admin\orders_vendor.php on line 9
It's a multi vendor e-commerce system, so the vendors are supposed to see orders for their products separately on their dashboard, however it's showing that error when I open the orders sections.