
输入页面:
<html>
<head>
<meta charset="utf-8">
<title>测试</title>
</head>
<body>
<form action="index.php">
<p>
数a: <input type="text" name="a">
</p>
<p>
数b: <input type="text" name="b">
</p>
<input type="submit" value="提交">
</form>
</body>
</html>
输出页面【index.php】
<?php
$a=$_GET["a"];
$b=$_GET["b"];
echo $a+$b;
?>