Advertisement
ini_PlayeR

Tugas 3 BAB 8 Statement SWITCH

Mar 24th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Statement SWITCH</title>
  4. </head>
  5.  
  6. <body>
  7. <center><h1>Tugas 3</h1></center>
  8. <form method="get"action="">
  9.     Jumlah jam kerja selama satu minggu:
  10.     <input type="text" name="jam"><br>
  11.     <input type="submit" name="submit" value="submit">
  12.     <input type="reset" name="reset" value="reset"><br>
  13.  
  14. <?php
  15.     $jam=$_GET[jam];
  16.     $upah1=2000;
  17.     $upah2=3000;
  18.     $gaji1=$jam*$upah1;
  19.     $lembur=($jam-48)*$upah2;
  20.     $gaji2=(48*$upah1)+$lembur;
  21.  
  22. echo "Jumlah jam kerja selama satu minggu adalah ".$_GET[jam]. " jam/minggu <br>";
  23.  
  24. switch($jam)
  25. {
  26.     case $jam <= 48 : echo "Gaji = Rp. ".$gaji1."<br>";
  27.     break;
  28.     case $jam > 48 : echo "Gaji = Rp. ".$gaji2."<br>";
  29.     break;
  30.     default : "Anda belum memasukan jumlah jam kerja selama satu minggu";
  31. }
  32. ?>
  33. </form>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement