Web App Lesson 5 Code - Constants
Web App Lesson 5 Code - Constants
Web App Lesson 5 Code - Constants
DOCTYPE html>
<head>
<title> Constant </title>
</head>
<body>
<?php
define("RATE", 5);
define("PERIOD", 1);
define("PRINCIPAL", 2000);
</body>
</html>