<form action="" method="get"> <label for="score">請輸入成績:</label><input type="number" id="score" name="score" max="100" value=""> <button>提交</button> </form>
$init = $_GET['score']; switch($init){ case $init >=90 : echo '<p>厲害了,我的學霸!</p>'; break; case $init >=80 : echo '<p>再接再厲,努力吧!</p>'; break; case $init >=70 : echo '<p>差太多啦!得加油趕上了??!</p>'; break; case $init >=60 : echo '<p>建議你留級吧??!</p>'; break; default: break; }
??? ????? ?? ??? ???? ?????. ? ?? ??? ??? ?????? ?? $init ??? ?? ??? ??? ????? ??? ? ???? ? ?? ???? ?
?? ?? ???? ?? ???? ??? ?? ?? ?? ???. ?? ??? ?? ??? ???? ???? ? ?? CASE?? ??? ???? break? ?? ??? ??? ????.