I am getting company interested in from my db which is something like this in my table Actor,Chief,Doctor so I used explode to make it as an array I need to put every items on this array in my HTML style to be something like this

as you can see from my image I need to make Actor has 50 point and then Chief has 40 point and so on
this is my PHP and HTML code
<?php
$getInterested = $db->prepare("SELECT interest_in FROM employer_basic_info WHERE id=?");
$getInterested->bind_param('i', $company);
if ($getInterested->execute()) {
$result = $getInterested->get_result();
while ($i = $result->fetch_object()) {
$companyInterested=$i->interest_in;
$tat= (explode(',', $companyInterested));
?>
<div class="f_left width_100per">
<ul class="cbp-ntaccordion f_left width_100per">
<li>
<h3 class="cbp-nttrigger font20px"><?php echo $i->interest_in ?>
<div title="Number of CV's" class="number3 f_left">50</div>
</h3>
<div class="cbp-ntcontent cbp-ntcontentMahmoud">
<ul>
<li>
<div class="mainTable2 f_left margin_24pxBm">
<div class="tablehHeader2"><span
class="fieldOne2 width_35per">Employee name</span>
<span class="fieldTWo2 width_20per">English Test</span> <span
class="fieldThree2 width_20per">Soft Skills Test</span> <span
class="fieldFour2 width_20per">IQ Test</span></div>
<ul>
<li>
<div class="fieldOneDes2 width_35per"><a href="#">Mahmoud mamdoh
mohamed</a>
</div>
<div class="fieldTWoDes2 width_20per"><a href="#" class="browenLink">10/10</a>
</div>
<div class="fieldThreeDes2 width_20per">2/10</div>
<div class="fieldThreeDes2 width_20per">N/A</div>
</li>
</ul>
<ul>
<li>
<div class="fieldOneDes2 width_35per"><a href="#">PHP Web Developer</a>
</div>
<div class="fieldTWoDes2 width_20per"><a href="#" class="browenLink">10/10</a>
</div>
<div class="fieldThreeDes2 width_20per">2/10</div>
<div class="fieldThreeDes2 width_20per">N/A</div>
</li>
</ul>
<ul>
<li>
<div class="fieldOneDes2 width_35per"><a href="#">PHP Web Developer</a>
</div>
<div class="fieldTWoDes2 width_20per"><a href="#" class="browenLink">10/10</a>
</div>
<div class="fieldThreeDes2 width_20per">2/10</div>
<div class="fieldThreeDes2 width_20per">N/A</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
<?php
}
}
?>
</div>