我很难弄清楚如何获取单选按钮的值以在 switch 语句中使用。基本上,当用户选择其中一个单选按钮时,我希望执行该单选按钮的操作。不确定我是否设置正确。我正在自己学习 PHP,不知道这是否是正确的方法。下面是 HTML 和 PHP。
<input class="radio" type="radio" name="calculate" value="average" checked="checked">Average<br />
<input class="radio" type="radio" name="calculate" value="total">Total<br />
<input class="radio" type="radio" name="calculate" value="both">Both<br />
这是PHP
$calculate_type = $_POST['calculate'];
switch ($calculate_type) {
case '$calculate_type == "average"':
$score_average = $score_total / count($scores);
break;
case '$calculate_type == "total"':
$score_total = $scores[0] + $scores[1] + $scores[2];
break;
case '$calculate_type == "both"':
$score_average = $score_total / count($scores);
$score_total = $scores[0] + $scores[1] + $scores[2];
break;
}