11 lines
199 B
PHP
11 lines
199 B
PHP
<?php
|
|
function getFooter(){
|
|
echo(<<<EOF
|
|
</div>
|
|
<footer includeHTML="/include/footer.php">
|
|
</footer>
|
|
<script src="/js/includeHTML.js"></script>
|
|
</body>
|
|
</html>
|
|
EOF);
|
|
}
|