MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: /home/asjudine/www/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>