function.php 258 Bytes
Newer Older
leonardo siagian committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
    function get_title($_title){
        return('<title>' . $_title . '</title>');
    }

    function open_page($_title){
        echo('<html><head>' . get_title($_title));
    }
    
    function close_page(){
        echo('</body></html>');
    }
?>