Here's the problem I had $combine and when I display it I need PENCIL to be display in RED COLOR
$combine = "book,pencil,pen,paper";
$combine = explode(',',$combine);
$count = count($combine) // Count array
// start display --------------------------------------
$counter = 0;
while ($a < $count) {
echo "$combine[$counter] <br>";
$counter++;
}
// display end --------------------------------------
RESULT:
book
pencil
pen
paper