Variable activities

<?php
$nama = "Ahmad Durian";
$noic = "901123-10-5566";
$harga_baju = 200;
$peratus_diskaun = 10;
$harga = $harga_baju - ($harga_baju*10/100);
?>

Based on the code above, write the PHP code that use all the above variables to display the output as below (Make sure your output shows the value of the variables and make it bold)


Last modified: Saturday, 23 February 2019, 10:08 AM