我想做出多項選擇。得分將以百分比表示,但我有條件。如果分數= 100%,那麼最後將顯示「C2熟練程度」。但如果運行,如果我得分超過30%,然後顯示「A1初學者」。該腳本不起作用。請幫助PHP如果語句腳本
這裏是代碼:
<?php
if ($persentaje == 100){
$hasil="C2 Proficiency";
}
if ($persentaje > 80) {
$hasil="C1 Advanced";
}
if ($persentaje > 60) {
$hasil="B2 Upper Intermediate";
}
if ($persentaje > 50) {
$hasil="B1 Intermediate";
}
if ($persentaje > 40) {
$hasil="A2 Pre Intermediate";
}
if ($persentaje > 30) {
$hasil="A2 Elementary";
}
else {
$hasil="A1 Beginner";
}
?>
*如何*是它不工作? –