Advertisement
pinguin09

Untitled

Jun 25th, 2019
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. <?php
  2. $nama = $_POST['nama'];
  3. $harga = $_POST['harga'];
  4. $jumlah = $_POST['jumlah'];
  5.  
  6. echo "<br><img src=logo.png width=200 height=100><br><br>";
  7.  
  8. {
  9.     echo "Nama Barang : $nama <br>";
  10.     echo "Harga Barang : $harga <br>";
  11.     echo "Jumlah Barang : $jumlah <br>";
  12. }
  13.  
  14. $total = $harga*$jumlah; {
  15.     echo "Total Barang : Rp. $total,-";
  16. }
  17.  
  18. if  ($total >= 1000000) {
  19.     $discount=(($total*25)/100);
  20.     $total_bayar=($total-$discount);
  21.     echo "<p> Discount 25% </p>";
  22.     echo "Total Bayar : Rp. $total_bayar,-";
  23. }
  24.  
  25. elseif ($total >= 450000) {
  26.     $discount=(($total*15)/100);
  27.     $total_bayar=($total-$discount);
  28.     echo "<p> Discount 15% </p>";
  29.     echo "Total Bayar : Rp. $total_bayar,-";
  30. }
  31.  
  32. elseif ($total <=450000) {
  33.         echo "<br> Anda Tidak Mendapatkan Discount";
  34.     }
  35.  
  36.     echo "<br>";
  37.     echo "Kembali Kehalaman Sebelumnya <a href=../index.html>Klik Disini!</a>"
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement