File: /home/asjudine/www/creditos/administracion/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> </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"> </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> </td>
</tr>
</table>
<br>
<br>