当前位置: 首页>>代码示例>>PHP>>正文


PHP DAOFactory::getTblDepartamentoDAO方法代码示例

本文整理汇总了PHP中DAOFactory::getTblDepartamentoDAO方法的典型用法代码示例。如果您正苦于以下问题:PHP DAOFactory::getTblDepartamentoDAO方法的具体用法?PHP DAOFactory::getTblDepartamentoDAO怎么用?PHP DAOFactory::getTblDepartamentoDAO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DAOFactory的用法示例。


在下文中一共展示了DAOFactory::getTblDepartamentoDAO方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

<td><input  id="datepicker_2" type="text" name="fecha_fin_educacion"></td>
</tr>
</table>
</form> 
</div>


   <!--Contenido de la Pestaña 3-->
   <div id="content-3" style="text-align:center;">
   <form class="contact_form" action="" method="post" name="contact_form">
          <table  border="0" style="margin: 0 auto;" id="page">
<tr>
<td><label class="labelNormal">Departamento:</label></td>
<td><select name="departamento_empleado" onchange="mostrarPuestos(this.value)">
  <?php 
$departamento = DAOFactory::getTblDepartamentoDAO()->queryAll();
for ($i = 0; $i < count($departamento); $i++) {
    $row = $departamento[$i];
    echo '<option value="' . $row->idDepartamento . '">' . $row->nombre . '</option>';
}
?>
</select></td>
</tr>
<tr>
<td><label class="labelNormal">Puesto Trabajo:</label></td>
<td><select name="puesto_empleado" id="txtHint"></select></td>
</tr>

</table>
    </form>
   </div>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:dashEmpleado.php

示例2:

<thead>
<tr>
<th>ID</th>
<th>Empleado</th>
<th>Departamento</th>
<th>Puesto Trabajo</th>
<th>Opciones</th>
</tr>
</thead>
<tbody>
<?php 
$empleado = DAOFactory::getTblEmpleadoDAO()->queryAllOrderBy("apellido");
for ($i = 0; $i < count($empleado); $i++) {
    $row = $empleado[$i];
    echo '<tr>';
    echo '<td>' . $row->idEmpleado . '</td>';
    echo '<td>' . $row->apellido . ', ' . $row->nombre . '</td>';
    $puesto = DAOFactory::getTblPuestoTrabajoDAO()->load($row->idPuestoTrabajo);
    $departamento = DAOFactory::getTblDepartamentoDAO()->load($puesto->idDepartamento);
    echo '<td>' . $departamento->nombre . '</td>';
    echo '<td>' . $puesto->nombre . '</td>';
    echo '<td><a href="form_detalleEmpleado.php?id=' . $row->idEmpleado . '">Detalles</a></td>';
    echo '</tr>';
}
?>
</tbody>
</table>
</form>
</div>
</body>
</html>
开发者ID:hrenza07,项目名称:pribantsa,代码行数:31,代码来源:form_listaEmpleado.php

示例3: error_reporting

<?php

error_reporting(E_ALL);
ini_set('display_errors', '1');
require_once '../modelo/include_dao.php';
$transaction = new Transaction();
$departamento = new TblDepartamento();
echo $_POST['nombre_departamento'];
echo $_POST['descripcion_departamento'];
$departamento->nombre = $_POST['nombre_departamento'];
$departamento->descripcion = $_POST['descripcion_departamento'];
DAOFactory::getTblDepartamentoDAO()->insert($departamento);
$transaction->commit();
echo 'Departamento agregado con exito';
header("Location: ../vista/menu.php");
开发者ID:hrenza07,项目名称:pribantsa,代码行数:15,代码来源:agregarDepartamento.php


注:本文中的DAOFactory::getTblDepartamentoDAO方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。