Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function judul(){
- echo "<h2>Contoh mendefinisikan dan memanggil fungsi di PHP </h2>";
- }
- function kaliAngka($x, $y){
- return $x * $y;
- }
- judul();
- $hasil = kaliAngka(2,5);
- echo "Hasil dari 2 X 5 = " .$hasil;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment