Web App Lesson 5 Code - Constants

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

<!

DOCTYPE html>
<head>
<title> Constant </title>
</head>

<body>
<?php

define("RATE", 5);
define("PERIOD", 1);
define("PRINCIPAL", 2000);

echo PRINCIPAL * PERIOD * RATE;


echo "<br/>";

//echo RATE += 5 will generate an error


?>

</body>
</html>

You might also like