79268360

Date: 2024-12-10 13:09:21
Score: 0.5
Natty:
Report link

That's because you have an array inside another array. What you're doing is adding an element to the outer array, you wish to add it to the inner. You reach the inner array using $tblData[0], so what you need to do is:

$tblData[0][] = array("Hot dogs" => "Big No");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daniel Malmgren