]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/faq.responderPregunta.php
Informe actualizado con mi parte.
[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 if ( isset( $_POST['Texto'] ) )
18 {
19  $cabecera = "Ingrese la respuesta a: ".$_POST['Texto'];
20 }
21 else
22 {
23  $cabecera = "Ingreso de respuesta";
24 }
25 marco_cabecera($cabecera);
26
27 // Si me llegó el form completo
28 if (isset($_POST['Respuesta']))
29 {
30     // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta
31                 echo Faq_IngresarRespuesta($_POST['PreguntaId'],$_POST['AutorPreguntaId'],$_SESSION['user']->GetId(),$_POST['Respuesta']); 
32 }
33 else 
34 {
35                 faq_form_responder_pregunta($_POST['PreguntaId'], $_POST['AutorPreguntaId']);
36 }
37
38 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');
39
40 ?>