PHP Calculator程序未显示结果

时间:2019-06-29 08:56:30

标签: php html

我正在尝试制作一个简单的PHP计算器程序,但是表单的结果未显示在下一页上。

非常感谢我能提供的任何帮助。

这是计算器表单的代码:

<body>
        <center>
            <div class="container">
                <form action="hasil_calculator.php" method="post"> <!--Action: Sent to "cek_grade.php" Method: The data will be displayed by "post"-->
                   Kalkulator:<br>
                   <input type="integer" name="input1" placeholder="Integer"> <!--The name of the numbers inputted are "nilai"-->
                   <select id ="operation" name="operation">
                        <option value="">Operation</option>
                        <option value="1">X</option>
                        <option value="2">/</option>
                        <option value="3">+</option>
                        <option value="4">-</option>
                   </select>
                   <input type="integer" name="input2" placeholder="Integer">
                   <br><br>
                   <input type="submit" id="submit" name="submit" value="Submit">
                </form> <!--All the data above should get sent to the page called "cek_grade.php"-->
            </div>
       </center>
    </body>

这是结果的代码:

<?php

    $input1 = $_POST['input1'];
    $input2 = $_POST['input2'];
    $operation = $_POST['operation'];

    if($operation == '+') {
        echo $input1 + $input2;
    }

    elseif($operation == '-') {
        echo $input1 - $input2;
    }

    elseif($operation == 'X') {
        echo $input1 * $input2;
    }

    elseif($operation == '/') {
        echo $input1 / $input2;
    }

?>

到目前为止,我已经尝试过: -摆脱任何不必要的空间 -在回显“ $ input1 + $ input2”上使用$(我认为放$会显示两个整数而不是答案?我不确定,因为什么也没显示) -使用echo“ input1 + input2”代替上面的内容,因此它显示的是结果而不是两个整数,但随后又没有任何显示。

2 个答案:

答案 0 :(得分:1)

根据您的<option>值,$operation的值将为“ 1”,“ 2”,“ 3”或“ 4”。

if($operation == '1') {
    echo $input1 * $input2;
}

elseif($operation == '2') {
    echo $input1 / $input2;
}

elseif($operation == '3') {
    echo $input1 + $input2;
}

elseif($operation == '4') {
    echo $input1 - $input2;
}

对于以后的调试,一个技巧是检查所获得的值,如下所示:

var_dump($operation);

答案 1 :(得分:0)

关闭时已编写此行。表示您要在提交表单后转到“ cek_grade.php”页面。

然后为什么您将操作设置为<!--All the data above should get sent to the page called "cek_grade.php"--> <form action="hasil_calculator.php" method="post">

指定您用来编写PHP代码的页面名称