Advertisement
ini_PlayeR

8B_How to Calculate The Salary

Mar 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     <title>If Statement</title>
  4.     </head>
  5. <body>
  6. <form method="get"action=" ">
  7.     Jumlah Jam Kerja <input type="text" name="jam" /><br/>
  8.     <input type="submit" name="submit" value="submit" />
  9.     <input type="reset" name="reset" value="reset" /><br/>
  10. <?php
  11. $jam = $_GET[jam];
  12. $upah1 = 2000;
  13. $upah2 = 3000;
  14. $gaji1 = $jam * $upah1;
  15. $lembur = ($jam - 48) * $upah2;
  16. $gaji2 = (48 * $upah1) + $lembur;
  17. echo "Jumlah Jam Kerja ".$_GET[jam]. " jam/minggu <br>";
  18. if ($jam <= 48)
  19. {
  20.     echo "Gaji = Rp. ".$gaji1;
  21. }
  22. else if ($jam > 48)
  23. {
  24.     echo "Gaji Lembur = Rp. ".$gaji2;
  25. }
  26. ?>
  27. </form>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement