Please I am having an issue, which is running a foreach in a while loop, I am only getting sometimes the first or last result in that column.
while ($girl = mysqli_fetch_array($obo)) {
$ch_desc = $girl['desc'];
$ch_tags = $girl['tags']; //eg boy,ope,not,good
$laye = explode (",", $ch_tags);
foreach ($laye as $fb){
$yepa = "<span> #$fb </span>";
}
<div class="panel-heading">
<?php echo $yepa ?>
</div>
}