X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/e92b831febcf1737682bfb7aa28c552a0dc8dabb..HEAD:/src/faq.responderPregunta.php diff --git a/src/faq.responderPregunta.php b/src/faq.responderPregunta.php index b3b2acd..1e01003 100644 --- a/src/faq.responderPregunta.php +++ b/src/faq.responderPregunta.php @@ -14,20 +14,27 @@ require_once 'lib/faq.functions.php'; require_once 'lib/validacion.php'; require_once 'lib/faq.forms.php'; -pagina_cabecera('Responder una Pregunta'); +if ( isset( $_POST['Texto'] ) ) +{ + $cabecera = "Ingrese la respuesta a: ".$_POST['Texto']; +} +else +{ + $cabecera = "Ingreso de respuesta"; +} +marco_cabecera($cabecera); // Si me llegó el form completo if (isset($_POST['Respuesta'])) { // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta - //faq_form_responder_pregunta($_POST['PreguntaId']); - echo Faq_IngresarRespuesta($_POST['PreguntaId'],$_SESSION['user']->GetId(),$_POST['Respuesta']); + echo Faq_IngresarRespuesta($_POST['PreguntaId'],$_POST['AutorPreguntaId'],$_SESSION['user']->GetId(),$_POST['Respuesta']); } else { - faq_form_responder_pregunta($_POST['PreguntaId']); + faq_form_responder_pregunta($_POST['PreguntaId'], $_POST['AutorPreguntaId']); } -pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar'); +marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg'); ?> \ No newline at end of file