Skip to content

Instantly share code, notes, and snippets.

@dytra
Created May 21, 2014 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dytra/2333e0300de4e581aa22 to your computer and use it in GitHub Desktop.
Save dytra/2333e0300de4e581aa22 to your computer and use it in GitHub Desktop.
Volume Tabung
<!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