I'm printing content from an array into a div. The problem is that when the array has multiple data it passes to div.
$titles = "";
foreach($array_resultados as $key =>$value){
$titles .= "<div>".$value['title']."</div>";
}
And my div
echo"
<td class='cal_today'>
<div class =divtoday>
".$titles."</div>
</td>";
I wanted to print all the data without any passing the div.