私はphpを初めて使用しています。送信ボタンを押してもフィールドが消去されないようにしようとしています。まず投稿ボタンをクリックした後にクリアフィールドが表示されなくなった
<?php
$result = "";
class calculator
{
var $a;
var $b;
function checkopration($oprator)
{
switch($oprator)
{
case '+':
return $this->a + $this->b;
break;
case '-':
return $this->a - $this->b;
break;
case '*':
return $this->a * $this->b;
break;
case '/':
return $this->a/$this->b;
break;
default:
return "Sorry No command found";
}
}
function getresult($a, $b, $c)
{
$this->a = $a;
$this->b = $b;
return $this->checkopration($c);
}
}
$cal = new calculator();
if(isset($_POST['submit']))
{
$result = $cal->getresult($_POST['n1'],$_POST['n2'],$_POST['op']);
}
?>
<form method="post">
<table align="center">
<tr>
<td><strong><?php echo $result; ?><strong></td>
</tr>
<tr>
<td>Enter 1st Number</td>
<td><input type="text" name="n1"></td>
</tr>
<tr>
<td>Enter 2nd Number</td>
<td><input type="text" name="n2"></td>
</tr>
<tr>
<td>Select Oprator</td>
<td><select name="op">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="submit" value=" = "></td>
</tr>
</table>
</form>
フィールドは、送信ボタンを押すと自動的にクリアになります。それは実際には主な問題です – maria
あなたの質問を間違って読んでいるようですので、5分後にチェックして、病気が私の答えを編集した –
たとえば、フィールドn1に4を入力し、フィールドn2に5を入力し、フィールドから5が消えて、答えが残っています。私は彼らに行ってほしくない。だから私が試みているのは、リセットボタンを押したときです。n1とn2を0に設定する必要があります。実際の値を4と5にしておかなければなりません。 – maria