MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/asjudine/public_html/creditos/administracion/serviasjudinet/busqueda_solicitudes_creditos.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>
<table width="650" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EEEEEE">
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><form action="listado_solicitudes.php" method="post" name="form" id="form">
      <table width="400" border="0" align="center" cellpadding="2" cellspacing="2">
        <tr>
          <td align="right" bgcolor="#EEEEEE"><span class="Estilo1">Fecha Inicial : </span></td>
          <td align="center" bgcolor="#EEEEEE"><select name="fechaini" id="fechaini">
              <?
$querydrop = "select fecha from solicitudcredito_deudor group by fecha order by fecha ASC";
$resultdrop = MYSQL_QUERY($querydrop);
$numberdrop = mysql_Numrows($resultdrop);

if ($numberdrop>0) 
{
$xdrop=0;

        while ($xdrop<$numberdrop)
        {

             $fecha = mysql_result($resultdrop,$xdrop,"fecha"); 
             echo "<option value=\"$fecha\">$fecha</option>"; 
             $xdrop++;
        } // end while 
} // end if 
?>
          </select></td>
          <td align="center" bgcolor="#EEEEEE">&nbsp;</td>
          <td align="right" bgcolor="#EEEEEE"><span class="Estilo1">Fecha Final : </span></td>
          <td align="center" bgcolor="#EEEEEE"><select name="fechafin" id="fechafin">
              <?
$querydrop = "select fecha from solicitudcredito_deudor group by fecha order by fecha ASC";
$resultdrop = MYSQL_QUERY($querydrop);
$numberdrop = mysql_Numrows($resultdrop);

if ($numberdrop>0) 
{
$xdrop=0;

        while ($xdrop<$numberdrop)
        {

             $fecha = mysql_result($resultdrop,$xdrop,"fecha"); 
			 
             echo "<option value=\"$fecha\">$fecha</option>"; 
             $xdrop++;
        } // end while 
} // end if 
?>
                    </select></td>
        </tr>
        <tr align="center">
          <td colspan="5" bgcolor="#EEEEEE"><input type="submit" name="Submit" value="Ver Listado de Solicitudes"></td>
        </tr>
      </table>
    </form></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>
<br>
<br>