我已经完成了一个练习,我必须将两个值相乘。
HTML 文件:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<div>
<form action="multiplication.php" method="POST">
<input type="text" size="4" id="A" name="A" />
*
<input type="text" size="4" id="B" name="B" />
=
<span id="answ">
<?php echo $equals; ?>
</span>
<input id="go" type="submit" value="submit" />
</form>
</div>
</body>
</html>
PHP 文件:
<?php
include("form.php");
$A = $_POST['A'];
$B = $_POST['B'];
$equals = $A * $B;
?>
但是,当我按下提交按钮时,显示的是 PHP 代码,而不是结果。