Beispiel #1
0
/**
 * @param string $footer
 */
function html_end($footer = '')
{
    echo '</td>' . "\n";
    echo '</tr>' . "\n";
    echo '</table>' . "\n";
    echo $footer;
    if (DEBUG) {
        echo '<p class="center" style="font-size:13px"><i>' . "\n";
        echo page_creation_timer();
        echo '</i></p>' . "\n";
    }
    echo '<p class="center" style="font-size:13px">' . "\n";
    echo __('footer01');
    echo mailwatch_version();
    echo ' - &copy; 2006-' . date('Y');
    echo '</p>' . "\n";
    echo '</body>' . "\n";
    echo '</html>' . "\n";
}
Beispiel #2
0
function html_end($footer = "")
{
    echo '</td>' . "\n";
    echo '</tr>' . "\n";
    echo '</table>' . "\n";
    echo $footer;
    echo '<p class="center" style="font-size:13px"><i>' . "\n";
    page_creation_timer();
    echo '</i></p>' . "\n";
    echo '</body>' . "\n";
    echo '</html>' . "\n";
}