Home > Article > Backend Development > Write a calculator in PHP (complete code attached)
This article introduces how to write a calculator using PHP HTML Javascript technology. I hope it will be helpful to students who are learning PHP development!
Write a calculator in PHP
<body> <?php if (!empty($_POST)) { $op=$_POST['point']; $sum1 = $_POST['sum1']; $sum2 = $_POST['sum2']; $sum = 0; if ($sum1 != '' && is_numeric($sum1) && $sum2 != '' && is_numeric($sum2)) { switch ($op) { case '+': $sum = $sum1 + $sum2; break; case '-': $sum = $sum1 - $sum2; break; case '*': $sum = $sum1 * $sum2; break; case '/': $sum = $sum1 / $sum2; break; } echo <<<shi <script> window.onload = function() { document.getElementsByName('sum3')[0].setAttribute('value', '$sum') document.getElementsByName('sum1')[0].setAttribute('value', '$sum1') document.getElementsByName('sum2')[0].setAttribute('value', '$sum2') document.getElementsByName('{$op}')[0].setAttribute('selected','selected') } </script> shi; } else { echo '输入内容必须是数字'; } }; ?> <form action="" method='post'> <input type="text" name="sum1"> <select name='point'> <option name='+'>+</option> <option name='-'>-</option> <option name='*'>*</option> <option name='/'>/</option> </select> <input type="text" name='sum2'> <input type="submit" name='button' value='='> <input type="text" name='sum3'> </form> </body>
(Free learning video tutorial sharing: php video tutorial)
The above is the detailed content of Write a calculator in PHP (complete code attached). For more information, please follow other related articles on the PHP Chinese website!