Advertisement
ujiajah1

php if else (dasar programan diskon harga )

Sep 18th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.75 KB | None | 0 0
  1. <?php
  2. $jumlahbarang = 10;
  3. $harga = array(75000, 85000, 75000 );
  4. $diskon = array(25,50);
  5.  
  6. if($jumlahbarang > 2){
  7. $hargarealbeli = $harga[1]*$jumlahbarang;
  8. $potongan=(($harga[1]*$diskon[1])/100);
  9. $bayar = $hargarealbeli - $potongan;
  10.  
  11. // =========================================================
  12.  
  13. echo "<center>"."<h1>Selamat datang di toko kami</h1>";
  14. echo "<h2>Nama Toko = hipster</h2>";
  15. echo "<h2>Owner     = Puji Ermanto</h2>"."</center><hr>";
  16. // =========================================================
  17.  
  18.  
  19. echo "<h3>Harga Barang = ". $harga[1]."</h3>";
  20. echo "<h3>Jumlah yang dibeli = ".$jumlahbarang."<h3>";
  21. echo "<h3>Jumlah Harga Real = ". $hargarealbeli."</h3>";
  22. echo "<h3>dapat diskon sebesar = ".$diskon[1]."%"."</h3>";
  23. echo "<h3>Total Yang Anda Bayar = "."Rp.".$bayar."</h3>";
  24. //*********************************************************
  25.  
  26. }elseif($jumlahbarang < 2){
  27. $totalbayar = ($harga[0]*$jumlahbarang);
  28.  
  29. // =========================================================
  30. echo "<center>"."<h1>Selamat datang di toko kami</h1>";
  31. echo "<h2>Nama Toko = hipster</h2>";
  32. echo "<h2>Owner     = Puji Ermanto</h2>"."</center><hr>";
  33. // =========================================================
  34.  
  35. echo "<h3>maaf anda tidak dapat diskon"."</h3>";
  36. echo "<h3>Harga Barang = ". $harga[0]."</h3>";
  37. echo "<h3>Jumlah yang dibeli = ".$jumlahbarang."</h3>";
  38. echo "<h3>Total Yang Anda Bayar = "."Rp. ". $totalbayar."</h3>";
  39. echo "<h2 class='mamam'>kalo beli lebih dari 2 akan mendapat diskon</h2>";
  40. }else{ $mamam='mamam yuk'; echo $mamam; }
  41. ?>
  42.  
  43. <!DOCTYPE html>
  44. <html lang="en">
  45. <head>
  46. <title>Diskon</title>
  47. <style>
  48. h1{
  49. color : #CC0000;
  50. }
  51. h2{
  52. color : green;
  53. }
  54. h3{
  55. color : blue;
  56. }
  57. h2.mamam{
  58. color : orange;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63.  
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement