本文整理汇总了PHP中DAOFactory::getTblReconocimientoDAO方法的典型用法代码示例。如果您正苦于以下问题:PHP DAOFactory::getTblReconocimientoDAO方法的具体用法?PHP DAOFactory::getTblReconocimientoDAO怎么用?PHP DAOFactory::getTblReconocimientoDAO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAOFactory
的用法示例。
在下文中一共展示了DAOFactory::getTblReconocimientoDAO方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: error_reporting
<?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");
示例2:
<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