how to solve Notice: Undefined index: cart_id in C:\xampp\htdocs\istore\cart.php on line 6
<?php
require_once $_SERVER['DOCUMENT_ROOT'].'/istore/core/init.php';
include 'includes/category_head.php';
include 'includes/cart-header.php';
if($cart_id != ''){
$cartQ = $db->query("SELECT * FROM cart WHERE id = '{$cart_id}'");
$result = mysqli_fetch_assoc($cartQ);
$items = json_decode($result['items'],true);
$i = 1;
$sub_total = 0;
$item_count = 0;
}
?>
Someone please help me to fix it.