<?php
echo"NAMA : Riki Hermanto";
echo"<p>";
echo"KELAS : 2F";
echo"<p>";
echo"NIM : 2011-51-213";
echo"<p>";
echo"<hr>";
echo"MEMBUAT PROGAM SEDERHANA MENGHITUNG LUAS SEGITIGA";
echo"<hr>";
echo"<p>";
echo"
<form method='POST' action=''>
ALAS :
<input name='alas' type='text' size='5'>
TINGGI :
<input name='tinggi' type='text' size='5'>
<input name='hitung' type='submit' value='HITUNG LUAS'>
</form>
";
echo"<hr>";
if($_POST['hitung'])
{
$alas=$_POST[alas];
$tinggi=$_POST[tinggi];
$luas= $alas * $tinggi/2;
echo"Luas Segi Tiga adalah 1/2 x Alas : $alas x Tinggi : $tinggi = $luas";
}
echo"<hr>";
echo"<p>";
echo"<hr>";
echo"MEMBUAT PROGAM SEDERHANA MENGHITUNG LUAS LINGKARAN";
echo"<hr>";
echo"Jika Diketahui Phi = 3.14";
echo"<p>";
echo"
<form method='POST' action'=''>
PHI :
<input name='phi' type='text' size='5'>
JARI-JARI :
<input name='jari' type='text' size='5'>
<input name='hitung' type='submit' value='HITUNG LUAS'>
</form>
";
echo"<hr>";
if($_POST['hitung'])
{
$phi = $_POST['phi'];
$jari= $_POST['jari'];
$luas = $phi*($jari*$jari);
echo"Luas Lingkaran jika diketahui Jari-Jari $jari = $luas";
echo"<hr>";
}
?>
postingan anda sangat bermanfaat :)
BalasHapus