]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/faq.responderPregunta.php
Agrego menú con algunos links dummy. Ahora hay que usar marco_cabecera() y marco_pie...
[z.facultad/75.43/tp1.git] / src / faq.responderPregunta.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/Pregunta.php';
12 require_once 'lib/faq.functions.php';
13 require_once 'lib/pagina.php';
14 require_once 'lib/validacion.php';
15 require_once 'lib/faq.forms.php';
16
17 marco_cabecera('Responder una Pregunta');
18
19 // Si me llegó el form completo
20 if (isset($_POST['Respuesta']))
21 {
22     // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta
23                 faq_form_responder_pregunta($_POST['PreguntaId']);
24                 //Todo: Falta que maneje el tema de usuario
25                 echo Faq_IngresarRespuesta($_POST['PreguntaId'],"1",$_POST['Respuesta']); 
26 }
27 else 
28 {
29                 faq_form_responder_pregunta($_POST['PreguntaId']);
30 }
31
32 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar');
33
34 ?>