如何使用PHP变量设置进度条的宽度

时间:2018-09-14 09:21:46

标签: php html5

我的PHP代码已准备就绪,并且可以在实时服务器上正常工作,我想添加一个进度条以显示活动的服务器播放器

代码如下:

echo '
<td class="subsection style="width: 57px;">
    <div class="headline" style="text-align: center; font-size: 12px;">players</div>
    <div style="text-aling: center; font-size: 12px;">'. $userd_slots . '/ '. $availablee_slots . '</div>
</td>';

但是它不起作用

enter image description here

<div class="progress">
    <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:<?php echo $required_percent; ?>%">
        <span class="sr-only"></span>
    </div>
</div>

0 个答案:

没有答案