0% found this document useful (0 votes)
45 views

Web App Lesson 5 Code - Constants

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views

Web App Lesson 5 Code - Constants

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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