]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/faq.responderPregunta.php
Se agrega un logo.
[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/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('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                 echo Faq_IngresarRespuesta($_POST['PreguntaId'],$_SESSION['user']->GetId(),$_POST['Respuesta']); 
25 }
26 else 
27 {
28                 faq_form_responder_pregunta($_POST['PreguntaId']);
29 }
30
31 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');
32
33 ?>