I am trying to print the data I have in the array. It works, I can see the data. My problem is that I want to print these various data within the same div. As I have so prints only one value. And I do not put the div in the foreach or make another div.
foreach($array_resultados as $key =>$value){
//echo "<label><b>".$value['title']."</b></label><br>";
}
echo
"<td class='cal_today'><b>
<div class =divtoday>
<br>".$value['title'] ."
</div>
</td>";