MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/asjudine/public_html/creditos/administracion/administrarseguimientocreditos.php
<?
include("head.php");
include("datacon.php"); 
?>
<style type="text/css">
<!--
.Estilo1 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
-->
</style>


<br>
<br>
<div align="center"><span class="Estilo1">Seleccione la C&eacute;dula para Administrar la Solicitud de Cr&eacute;dito.</span></div>
<form name="form1" method="post" action="updateadministracionseguimiento.php">
  <table width="200" border="0" align="center" cellpadding="2" cellspacing="2">
    <tr>
      <td align="right" bgcolor="#EEEEEE"><span class="Estilo1">C&eacute;dula : </span></td>
      <td align="center" bgcolor="#EEEEEE"><select name="cedula" id="cedula">
        <option="">Select One


    
      
          
        <?

$querydrop = "select cedula from seguimiento_solicitudcredito";
$resultdrop = MYSQL_QUERY($querydrop);
$numberdrop = mysql_Numrows($resultdrop);

if ($numberdrop>0) 
{

$xdrop=0;

        while ($xdrop<$numberdrop)
        {

             $cedula = mysql_result($resultdrop,$xdrop,"cedula"); 
             $cedula = mysql_result($resultdrop,$xdrop,"cedula"); 
             echo "<option value=\"$cedula\">$cedula</option>"; 
             $xdrop++;
        } // end while 
} // end if 

?>
      </select></td>
    </tr>
    <tr align="center">
      <td colspan="2" bgcolor="#EEEEEE"><input type="submit" name="Submit" value="Administrar"></td>
    </tr>
  </table>
</form>
<?
include("foot.php");
?>