Created
May 21, 2014 03:23
-
-
Save dytra/2333e0300de4e581aa22 to your computer and use it in GitHub Desktop.
Volume Tabung
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Menghitung Volume Tabung</title> | |
</head> | |
<body> | |
<form action="outputvolumetabung.php" method="post"> | |
Jari-jari <input type="text" name="jari"> <br> | |
Tinggi <input type="text" name="tinggi"> <br> | |
<input type="submit" name="submit"> | |
</form> | |
<?php | |
if(isset($_POST['submit'])) { | |
$phi = 22/7; | |
$jari = $_POST['jari']; | |
$tinggi = $_POST['tinggi']; | |
$volume = $phi * $jari * $jari * $tinggi; | |
echo(" | |
Phi = $phi <br /> | |
Jari-jari = $jari <br /> | |
Tinggi = $tinggi <br /> | |
Volume = $volume | |
"); | |
} | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment