Rabu, 22 Oktober 2014

FUNCTION DAN PEMBUNGKUSAN

Contoh program

<center> <body background="belakang.jpg">
<form name="fm_data" action="" method="post">
    <input type="text"name="nilai"/>
    <input type="submit"name="btnkirim"value="kirim">
</form>

<?php
function amin($nilai) {        //fungsi atau function

$a = 0;
$b = 1;
echo $a. "</br>";               //menampilkan dari angaka 0
for ($i=1; $i<=$nilai; $i++){      //$nilai merupakan fungsi
    $c = $a + $b;
    $a = $b;
    $b = $c;
    echo  " ".$c." , ";
    }
    }
amin ($nilai);                 //memenaggil fungsi
?>

Tidak ada komentar:

Posting Komentar