Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php error_reporting (E_ALL ^ E_NOTICE); ?>
- <?php
- //Oleh Puji Ermanto http://hipster.comli.com/
- $case="Case Smartphone Terbaru";
- $toko="Anjara Store";
- $saya="Puji Ermanto";
- echo "HARGA " .strtoupper($case)." \n";
- echo strtoupper($toko)." Online Shop"." \n";
- $case_smartphone = array( 'xiaomi' => 75000 ,
- 'Oppo Neo 7' =>85000 ,
- 'asus zenfone' =>75000);
- foreach ($case_smartphone as $cassing => $hp ){
- echo "[$cassing]=>$hp" ."\n";
- }
- echo "harga xiaomi = ". "Rp." .$hp. "\n"
- . "harga Oppo Neo 7 = ". "Rp." .$hp. "\n"
- . "harga Assus Zenfone = ". "Rp." .$hp;
- echo "\n";
- echo strtoupper($toko)." Online Shop"." Membuka Diskon"." \n"
- ."Untuk Pembelian Produk Lebih Dari 2 Item";
- if($hp >= 2){
- $diskon = (($hp*10)/100);
- $bayar = $hp-$diskon ;
- echo "anda mendapat diskon 10%, ". "\n"
- ."anda hanya perlu membayar Rp. ".$bayar ; }
- ?>
- <?php echo $saya."™"; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement