The answers I found for this exception were not very helpful. Can someone please tell me what is wrong here?
Thanks
    for ($x = 0; $x <= $cartcount; $x++)
    {
      $innerarray = $cart[$x];              //this is the exception-producing line
      $quantity = $innerarray['quantity'];
      $title = $innerarray['articleTitle'];
      $articlenumber = $innerarray['articleNumber'];
      $outputQNT[] = $innerarray['quantity'];
      $outputTITLE[] = $innerarray['articleTitle'];
      $outputATNBR[] = $innerarray['articleNumber'];
    }
 
    