这是一个简单的评级系统.有3个值包含一个百分比,附带说明/名称.我只想显示描述/名称.
出于某种原因,它显示:
一个
Ť
一世
这是我的脚本:
if(isset($_POST['analyze'])) {
// get total value of "Time Management" section
for($i = 0; $i < 19; $i++) {
$time_management_total += $_POST["time_management_Q$i"];
}
// get total value of "Attract Clients" section
for($i = 0; $i < 16; $i++) {
$attract_clients_total += $_POST["attract_clients_Q$i"];
}
// get total value of "Internet Marketing" section
for($i = 0; $i < 21; $i++) {
$internet_marketing_total += $_POST["internet_marketing_Q$i"];
}
// calculate user's personal "Time Management" score
$time_management_rating = ($time_management_total / 19) …Run Code Online (Sandbox Code Playgroud)