Пример #1
0
    } );
</script>  
<div style="float: left" class="col-lg-8 span8 pull-left">
    <h3> Historial participante inscrito por cursos</h3>
    <form action="../controlador/control_inscripcion.php" method="POST" name="form_participante">
        <input type="hidden" value="eliminar_participante" name="operacion" id="cam_operacion"/>
        <input type="hidden"  name="idparticipante" id="cam_idparticipante"/>
        <table class="table table-striped table-hover table-bordered bootstrap-datatable datatable dataTable" id="filtro">
            <thead>
                <th>Cédula</th><th>Apellido Nombre</th><th>Dirección</th><th>Teléfono</th><th>Estatus</th><th>Acción</th>
            </thead>
            <tbody>
            <?php 
require_once '../clases/clase_participante.php';
$lobjParticipante = new clsParticipante();
$laParticipantes = $lobjParticipante->consultar_participantes();
for ($i = 0; $i < count($laParticipantes); $i++) {
    if ($laParticipantes[$i][17]) {
        $laParticipantes[$i][17] = 'Activo';
    } elseif (!$laParticipantes[$i][17]) {
        $laParticipantes[$i][17] = 'Inactivo';
    }
    echo '<tr>';
    echo '<td>' . $laParticipantes[$i][1] . '</td>';
    echo '<td>' . $laParticipantes[$i][2] . ' ' . $laParticipantes[$i][4] . '</td>';
    echo '<td>' . $laParticipantes[$i][8] . '</td>';
    echo '<td>' . $laParticipantes[$i][7] . '</td>';
    echo '<td>' . $laParticipantes[$i][17] . '</td>';
    echo '<td>';
    echo '<a class="btn btn-success" href="../reporte/historial_participante.php?idparticipante=' . $laParticipantes[$i][0] . '" target="_blank"><i class="fa fa-file-text"></i></a> </td>';
    echo '</tr>';