You can change items features from Database at db_mock.php
You can change and print Basket at index.php
$cart_1 = new Cart();
$cart_1->add_item('B01');
$cart_1->add_item('G01');
$c1_total = $cart_1->get_cart_total();For get price of item
function get_item_price()For get code number of item
function get_item_code()Add item to the shopping cart
function add_item($new_item)Print total cost of the basket
function get_cart_total()Print total delivery cost
function delivery_cost($current_saldo)