You are on page 1of 1

Kalkulator.

html

<html>

<body>

<form action”kalkulator.php” method = “post”> Masukan angka <input type=”text” name =


“angka”/><br>

<form action”kalkulator.php” method = “post”> Masukan angka <input type=”text” name =


“angka”/><br>

<input type=”submit”/>

</body>

</html>

Kalkulator.php

<html> <body> <?php $a = $_POST["angka"] ; $b = $_POST["angka"] ; $c = $a + $b ;


echo "hasilnya" . $c ; ?> </body> </html>q1

You might also like