Esempio n. 1
0
 function mensaje_correcto($mensaje = "", $url = BASE_URL)
 {
     showHeaders();
     showMenu();
     correct_mensaje($mensaje, $url);
     showFoot();
 }
Esempio n. 2
0
 function registrarse()
 {
     showHeaders();
     showMenu();
     $form = $this->M_DATA->readFile("json/registrar_usuario.json");
     $form = $this->C_FORMING->creaForm($form);
     showForm($form);
     //*/
     //showProductos1();
     showFoot();
 }
Esempio n. 3
0
    $headers = readOverview($ns, $group, 1);
    $article_count = count($headers);
    if ($articles_per_page != 0) {
        if (!isset($first) || !isset($last)) {
            if ($startpage == "first") {
                $first = 1;
                $last = $articles_per_page;
            } else {
                $first = $article_count - ($article_count - 1) % $articles_per_page;
                $last = $article_count;
            }
        }
        echo '<p align="center">';
        showPageSelectMenu($group, count($headers), $first);
        echo '</p>';
    } else {
        $first = 0;
        $last = $article_count;
    }
    showHeaders($headers, $group, $first, $last);
    closeNNTPconnection($ns);
}
?>

<p align="right"><a href="#top"><?php 
echo $text_thread["button_top"];
?>
</a></p>

<?php 
include "tail.inc";