百分比计算不适用于我的php

时间:2017-11-09 04:20:00

标签: javascript php mysql

首先,我知道百分比计算是本论坛中经常提出的问题,我已经阅读了大部分内容来解决我的百分比计算问题,但看起来效果不佳。我一直在指这个

表格代码:

<center><form action="" method="post">
<div>
<?php if ($id != '') { ?>
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<p>ID: <?php echo $id; ?></p>
<?php } ?>


<p><strong>Tarikh: *</strong> 
<input type="text"  style="text-transform:uppercase" name="date" value=" <?php echo $date; ?>"/><br/></p>
<p><strong>Di bawah 60 Minit&nbsp;: *</strong> <input type="text" name="casesolved_u"
value="<?php echo $casesolved_u; ?>"/><br/></p>
<p><strong>Jumlah kes : *</strong> <input type="text" name="casesolved_a"
value="<?php echo $casesolved_a; ?>"/></p>
<p><strong> Peratusan : </strong> <input type="text" name="percentage"
value="<?php echo ($percentage, 2); ?>"/></p>
<p>* required</p>
<input type="submit" name="submit" value="Submit" />
</div>
</form></center>

这是我的插入新数据代码

if (isset($_POST['submit']))
{
// get the form data
$date = strtoupper($_POST['date']);
$casesolved_u = htmlentities($_POST['casesolved_u'], ENT_QUOTES);
$casesolved_a = htmlentities($_POST['casesolved_a'], ENT_QUOTES);
$percentage = htmlentities($_POST['percentage'], ENT_QUOTES);

// check all fields are filled
if ($date == '' || $casesolved_u == '' ||$casesolved_a == '' || $percentage == '')
{
// if they are empty, show an error message and display the form
$error = 'ERROR: Please fill in all required fields!';
renderForm($date, $casesolved_u, $casesolved_a, $percentage, $error);
}
else
{
// insert the new record into the database
if ($stmt= $mysqli->prepare ("INSERT emergency (date, casesolved_u, casesolved_a, percentage) VALUES (?,?,?,?)"))

{
// calculate percentage
$casesolved_u = $row ['casesolved_u'];
$casesolved_a = $row ['casesolved_a'];
$percentage = ($casesolved_u/$casesolved_a)* 100;
echo ($percentage,2);

$stmt->bind_param("ssss",$date, $casesolved_u, $casesolved_a, $percentage);
$stmt->execute();
$stmt->close();
}
// show an error if the query has an error
else
{
echo "ERROR: Could not prepare SQL statement.";
}

// redirec the user
header("Location: view.php");
}

在此之前,我手动计算百分比以便将信息存储在数据库中,但是现在,我想让系统尝试自己计算它,但是我失败了。希望有人可以帮助我,我很抱歉再次提出问题,因为我真的找不到适合我的解决方案。谢谢,再次抱歉。

编辑: 这是我现在在数据库中的内容,因此对于12月,我希望自动进行计算,不再需要手动计算。 enter image description here

1 个答案:

答案 0 :(得分:0)

tota项目数量为100%。

如果项目总数为57,则为100%。 因此每个单位(每1个案例)可以表示为100%/ 57 = 1,754%

从这里,您可以计算0到57之间任意数量单位的百分比。

例如,11个案例将是11 * 1,754%= 19,29%

同样地,57例是57 * 1,754%= 99,98%(100%)

关于代码:

首先从$ _POST读取的这两个变量将被$row覆盖,而@conn未在任何地方声明。然后他们用来计算百分比。

$ casesolved_u = $ row ['casesolved_u'];
$ casesolved_a = $ row ['casesolved_a'];

如果计算应该使用$ _POST的输入完成,请删除这两行,将这些字符串变量转换为数字,然后进行计算。