]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/faq.ingresarPregunta.php
Pongo los títulos de los php como h3 y pongo como h2 el título del módulo al que...
[z.facultad/75.43/tp1.git] / src / faq.ingresarPregunta.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/pagina.php';
12 require_once 'lib/Pregunta.php';
13 require_once 'lib/faq.functions.php';
14 require_once 'lib/validacion.php';
15 require_once 'lib/faq.forms.php';
16
17 marco_cabecera('Ingreso de Preguntas');
18
19 // Si me llegó el form completo
20 if (isset($_POST['Pregunta']))
21 {
22     // Da de alta la pregunta
23                 echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] );             
24                 
25                 // Vuelve a mostrar el formulario si todavia el usuario tiene creditos sufcientes
26                 // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
27                 if ( $_SESSION['user']->getCreditos() > 0 ) 
28                 {
29                         faq_form_ingresar_pregunta(); 
30                 }
31                 else
32                 {
33                         echo "<br/>";
34                         echo warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
35                 }
36 }
37 else 
38 {
39     // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
40                 if ( $_SESSION['user']->getCreditos() > 0 ) 
41                 {
42                         faq_form_ingresar_pregunta(); 
43                 }
44                 else
45                 {
46                         echo warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
47                 }
48 }
49
50 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');
51
52 ?>