2 // vim: set binary noeol et sw=4 sts=4 :
5 // Lucarella, Schein, Arena
7 // Creado: Jonathan Schein 01/05/2005
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';
17 if ( isset( $_POST['Texto'] ) )
19 $cabecera = "Ingrese la respuesta a: ".$_POST['Texto'];
23 $cabecera = "Ingreso de respuesta";
25 marco_cabecera($cabecera);
27 // Si me llegó el form completo
28 if (isset($_POST['Respuesta']))
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']);
35 faq_form_responder_pregunta($_POST['PreguntaId'], $_POST['AutorPreguntaId']);
38 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');