SyntaxFix
Write A Post
Hire A Developer
Questions
Use array_shift function
array_shift
$myarray = array_shift($myarray);
This will move array elements one level up and you can access any array element without using [0] key
[0]
echo $myarray['email'];
will show [email protected]