Ejemplo n.º 1
0
<?php

include 'inc/header.php';
writePage('page.txt');
include 'inc/footer.php';
Ejemplo n.º 2
0
function rebuildThread($id)
{
    global $mysql_posts_table;
    $htmlposts = "";
    $posts = postsInThreadByID($id);
    foreach ($posts as $post) {
        $htmlposts .= buildPost($post, True);
    }
    $htmlposts .= "<br clear=\"left\">\n" . "<hr>";
    writePage("res/" . $id . ".html", fixLinksInRes(buildPage($htmlposts, $id)));
}
Ejemplo n.º 3
0
function rebuildThread($id)
{
    $htmlposts = "";
    $posts = postsInThreadByID($id);
    foreach ($posts as $post) {
        $htmlposts .= buildPost($post, TINYIB_RESPAGE);
    }
    $htmlposts .= "<br clear=\"left\">\n<hr>\n";
    writePage('res/' . $id . '.html', fixLinksInRes(buildPage($htmlposts, $id)));
}
Ejemplo n.º 4
0
<?php

include '../inc/header.php';
writePage('error.txt');
include '../inc/footer.php';