It's not like I've never done it before, but for some reason it won't work this time... I'm just returnin an array from a function
//Call Function to create the result array
$specs = giveData();
and I'm trying to output the data with echo this way:
<b>lenght:</b><?php echo $specs[0]['lenght']; ?>
I already tried var_dump and it shows me the data in the array, also with print_r works.
EDIT: I updated the code the way it works for me.