Creating a Dynamic Page
<?php
print("Hello world!");<html>
<body>
<p>
<?php
print("Hello, it’s " . date('Y-m-d'));
?>
</p>
</body>
</html><html>
<body>
<p>Hello, it’s <?=date('Y-m-d')?></p>
</body>
</html>Last updated