<th style="">Contrato</th>
                                                <th style="">nombre</th>
                                                <th style="">saldo insoluto al momento</th>
                                                <th style="">Fecha del último pago</th>
                                                <th style="">referencia del último pago</th>
                                                <th style="">fecha del pago vencido</th>                                               
                                                
                                                </tr>
                </thead>

 
        <tbody style="text-transform: uppercase;">
        	<?php 
include_once '../controller/cCliente.php';
$cli = new cCliente();
$con = $cli->getCarteraVencida();
while ($l = $con->NextRow()) {
    ?>
        	<tr>
        		<td><?php 
    echo $l['id_contrato'];
    ?>
</td>        	
        		<td class="odd"><?php 
    echo $l['nombre'] . ' ' . $l['a_pat'] . ' ' . $l['a_mat'];
    ?>
</td>
        		<td><?php 
    echo $l['saldo_insoluto'];
    ?>
</td>