I have an array as follows
$crazy_array = array (
0 => array ( \"name\" => \"jack\", \"age\" => \"10\" ),
1 => array ( \"name\" => \"jackeline\", \"age\" => \"10\" ),
2 => array ( \"name\" => \"jack maman\", \"age\" => \"10\" )
);
and I need to add some text (html code actually) to the \'name\' at one (or every) positions. I need to add it so that the 0 position would become something like this:
0 => array ( \"name\" => \"<img src=\'bola.jpg\'>jack\", \"age\" => \"10\" ),
Wich means that I\'m adding <img src=\'bola.jpg\'> to the \'name\' in that position.
How can I do something like this, that affects one (and all) of the positions ?