]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/faq.listadoPreguntas.php
1a99987e4f12b2e0c12d9e1ee6d61055c8095073
[z.facultad/75.43/tp1.git] / src / faq.listadoPreguntas.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Jonathan Schein 01/05/2005
8 //
9 // $Id$
10
11 require_once 'lib/faq.functions.php';
12 require_once 'lib/pagina.php';
13
14
15 // Chequea que se este logueado
16 pagina_check_login();
17
18 pagina_cabecera('Listado de Preguntas');
19
20 Faq_ListarPreguntas($_SESSION['user']);
21
22 pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar');
23
24 ?>