Source Code for /public/02-hello-world/today.php

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>What day is it?</title>
</head>
<body>
  <h1>Happy <?php echo date('l'); ?>!</h1>
  <p>
    Today is <?php echo date('l'); ?>. That's my favourite day of the week!
  </p>
</body>
</html>