Files
cs157AOnlineBanking/index.php

11 lines
110 B
PHP
Raw Permalink Normal View History

2014-10-18 16:29:13 -07:00
<?php
require_once 'header.php';
echo <<<_END
2014-11-02 14:23:11 -08:00
<div>HELLO WORLD!!</div>
2014-10-18 16:29:13 -07:00
</body>
</html>
_END;
?>