- $Preguntas = Faq_ObtenerPreguntas();
-
- $CantidadPreguntas = count($Preguntas);
-
- if ( $CantidadPreguntas != 0 )
- {
- foreach($Preguntas as $ObjPregunta)
- {
- if ( $ObjPregunta->activa )
- {
- $ObjPregunta->toHTML();
-?>
- <form action="faq.responderPregunta.php" method="post">
- <input type="hidden" name="PreguntaId" value="<?php echo $ObjPregunta->id ?>">
- <input type=submit value="Responder Pregunta">
- </form>
-<?php
- }
- }
- }
- else
- {
- echo "NO HAY PREGUNTAS PARA MOSTRAR";
- }
- if ( $Usuario->esAdmin() )
- {