<?php error_reporting(E_ALL); ini_set('display_errors', '1'); require_once '../modelo/include_dao.php'; $transaction = new Transaction(); $reconocimiento = new TblReconocimiento(); $reconocimiento->descripcion = $_POST['descripcion_reconocimiento']; $reconocimiento->idEmpleado = $_POST['empleado_reconocimiento']; DAOFactory::getTblReconocimientoDAO()->insert($reconocimiento); $transaction->commit(); echo 'Reconocimiento agregado con exito'; header("Location: ../vista/menu.php");
<hr style="width:300px;"> <?php } ?> </fieldset> </tr> </td> <tr> <td> <fieldset> <legend> Reconocimientos </legend> <?php $reconocimiento = DAOFactory::getTblReconocimientoDAO()->queryByIdEmpleado($empleadoid); for ($k = 0; $k < count($reconocimiento); $k++) { $fila_reconocimiento = $reconocimiento[$k]; ?> <table> <tr> <td><label class="labelNormal">Descripcion:</label></td> <td><label><?php echo $fila_reconocimiento->descripcion; ?> </label></td> </tr> </table> <hr style="width:300px;"> <?php