Very good, I'm going through a json in php and it depends on the value of one of the fields, I would like to concatenate an image to the field, if I put a text works well but doing it in this way with an image does not. Any suggestions? Thanks
foreach ($obj as $data)
{
if ($data->estado_col == '1')
{
$data->name= <img src='bombillaV.png' > .($data->name);
}
}