I have an Array as shown bellow
Array
(
[ifour consultancy 123] => Array
(
[Company] => ifour consultancy 123
[Physical] => B-515, Gopal Palace, Near shiromani complex,
[address] => test,
)
)
i am try to print it using
echo $array[0]['Company'];
and it give me Message:
Undefined offset: 0 instead of showing me ifour consultancy 123
array_values. See my answer.