HTML PROGRAM-
<html>
<title> Arithmetic
<center>
<form action="arithmetic.php "method="POST">
Enter No1: <input type="text" name="no1">
Enter No2: <input type="text" name="no2">
<input type="submit" value="Submit">
</form>
</center>
</html>
PHP PROGRAM (use function and call by choice)
airtmetic.php-
<?php
$x=$_POST['no1'];
$y=$_POST['no2'];
echo $x+$y;
?>