File: /home/asjudine/www/credito_rotativo_guardar_gestion_cobranzas.php
<html>
<head>
<title>Cartera Consulta Morosos Credito Rotativo</title>
<meta http-equiv="X-UA-Compatible" content="IE=8; IE=9; IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
*{margin: 0;padding: 0;}
body{background-color:#EAEAEA;font-family:Geneva, Arial, Helvetica, sans-serif;}
header {background-color: #B7271F; text-align: center;}
.cerrarsesion{width: auto;background-color: #DBD8C9;color: #000;font-size: 13px;position:absolute;top: 15px;right:10px;z-index:0;padding: 10px;border-radius: 10px;cursor: pointer;}
.cerrarsesion:hover{background-color: #ffffff;color: #000;}
.titulo{width: 100%;text-align: center;background-color: #dbd8c9;color: #b20606;padding: 6px 0;font-size: 18px;}
table{margin: 0 auto;border: 2px solid #bebebe; text-align: center;}
.divirmenu{text-align: center;}
.irmenu{width: 150px;background-color: #1c4fa0;color: #fff; padding: 4px;border-radius: 6px;}
.irmenu:hover{background-color: #67a0d9; color: #000;}
.fecha{background-color: #d6e08b; padding: 2px;color: #000;font-size: 15px; text-align: center;}
td{border: #969696 solid 1px;}
.tdizq{background-color: #EEE; padding: 1px 10px;color: #00135F;font-size: 13px;font-weight: 600; text-align: left;}
.tdcen{background-color: #EEE; padding: 1px 10px;color: #00135F;font-size: 13px;font-weight: 600; text-align: center;}
.tdder{background-color: #EEE; padding: 1px 10px;color: #00135F;font-size: 13px;font-weight: 600; text-align: right;}
.exp{color:#8A0000; font-size:12px;}
.boton1{width:150px;background-color: #ffffff;color: #000;padding: 2px;border:2px solid #580000;border-radius:4px;}
.boton1:hover{background-color: #6f0000;color: #fff;cursor: pointer;}
input[type=text]{border-radius: 2px; padding: 2px;background-color: #FFFEF4;}
.tdtitulo{background-color: #e3dec0; color: #b20606; padding: 1px; text-align: center; font-size: 11px; font-weight: 700}
.tdfull{background-color: #fff; color: #000; padding: 1px; text-align: center; font-size: 12px;}
.botonnew{width: 90px; background-color: #e3dec0;color: #b20606;padding: 1px;border-radius:5px;}
.botonnew:hover{width: 90px; background-color: #cbbd6a;color: #000;padding: 1px;border-radius:5px;}
</style>
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<img src="../ELEMENTS/bannerInterasjudinet.png" alt="" width=" 700" height="70">
</header>
<h3 class="titulo">GESTIONES CREDITOS COBRANZAS</h3>
<?php echo "<div class='cerrarsesion' onclick='location.href=\"../cerrar_session.php\"'>CERRAR SESION</div>";?>
<form action="" method="post" name="form1" class="provd" id="form1">
<div align="justify" style="padding-left: 80px"><br><br>
<?php
require_once("Conectarse.php");
$cont10 = mysql_query('SELECT cedula, nombre, valor_credito, cuotas_credito, valor_cuota, cuotas_descontadas, cuotas_pendientes, estado, fecha_ultimo_descuento, saldo_nuevo FROM credito_rotativo_inter WHERE cedula = "' .$_GET['ced']. '" ');
if (!$cont10) {
die('Invalid query 11: ' . mysql_error());
}
list($cedula, $nombre, $valor_credito, $cuotas_credito, $valor_cuota, $cuotas_descontadas, $cuotas_pendientes, $estado, $saldo_nuevo) = mysql_fetch_row($cont10);
?>
<span>Cedula</span>
<input type="text" name="cedula" id="cedula" value="<?php echo $cedula;?>">
<span>Nombre</span>
<input type="text" name="nombre" id="nombre" value="<?php echo $nombre;?>" width="100%">
<input name="consultar" id="consultar" type="submit" class="boton1" value="CONSULTAR">
</div>
</form>
</body>
</html>