<table id="example" class="table table-hover dataTable" data-page-length='25'>
        <thead>
            <tr>
                <th>Nombre/Raz&oacute;n</th>
                <th>Tel&eacute;fono</th>
                <th>Ciudad</th>
                <th>Tipo de Expediente</th>
                <th>Acciones</th>
            </tr>
        </thead>
 
        <tbody style="text-transform: uppercase;">
        	<?php 
include_once "../controller/cExpediente.php";
$expen = new cExpediente();
$lista = $expen->filtraContratoActivo($_POST['tipo'], $_POST['finicio'], $_POST['fin'], $_POST['filtrar']);
$nmain = $expen->getNExpeMain($_POST['tipo']);
while ($l = $lista->NextRow()) {
    ?>
        	 
 			<input id="tipoExpe" type="hidden" value="<?php 
    echo $_POST['tipo'];
    ?>
" />
        	<tr>
        		<td class="odd"><?php 
    echo $l['razon'] . $l['nombre'] . ' ' . $l['a_pat'] . ' ' . $l['a_mat'];
    ?>
</td>
        		<td><?php 
    echo $l['telefono_p'];