26/09/2003, 13:57
|
| | | Fecha de Ingreso: diciembre-2002 Ubicación: santiago-chilito
Mensajes: 1.931
Antigüedad: 21 años, 10 meses Puntos: 2 | |
pense que seria mas simple con un ejemplo , pero les expondre el problema completo..
buen este script hace elegir entre arriendo de propiedade y ventas
si eliges venta aparecen combos
tipo propiedad : salen las propiedades leidas de la bd despues recarga la pag. y carg el combo comuna
comuna: elige la opcion y llama al script correspondiente
nota:todo esto en una misma pag.
bueno si pongo los valores en 0 como me dices no se podria recargar el boton de comuna , en consecuencia no se podria genrar la busqueda....
esperso ser claroo........ gracias.....
<form name="form6" method="get" action="">
<input type="submit" name=BOTON value="BUSCAR ARRIENDOS PROPIEDADES">
<input type="submit" name=BOTON value="BUSCAR VENTAS PROPIEDADES">
</form>
</form>
<?php
IF ($BOTON=="BUSCAR ARRIENDOS PROPIEDADES")
{
include ('base.php');
$consulta="SELECT DISTINCT tipo from propiedades where MODALIDAD='ARRIENDO' order by tipo " ;
$res=mysql_query($consulta) or die ("consulta fallo1a");
$num=mysql_num_rows($res);
IF ($sfile0=="")
{
$sfile0=mysql_result($res,0,0);
}
?>
<table width="65%" border="0">
<form name="form1" method="post" action="">
<tr>
<td><em><strong><font size="2">TIPO DE PROPIEDAD: </font></strong> </em></td>
<td>
<select name="sfile0" >_
<?php
echo "<option value=\"".$sfile0."\">".$sfile0."</option>";
For ($i=0;$i<$num;$i++)
{
$a=mysql_result($res,$i,0);
if ($sfile0<>$a)
{
echo "<option value=\"".$a."\">".$a;
}
}
mysql_close();
?>
</select>
<input type="submit" name="Submit" value="BUSCAR"></td>
</form> </tr>
<tr>
<td> </td>
<td>
<form name="form2" method="post" action="resultados_busqueda_arriendos.php">
<input type=hidden name=sfile0 value="<?php ECHO $sfile0; ?>">
<input type="submit" name="Submit2" value="VER TODOS LOS ARRIENDOS DE <?php ECHO $sfile0; ?>">
</form></td> </tr>
<?php
include ('base.php');
$consulta="SELECT DISTINCT comuna from propiedades where modalidad='arriendo' and tipo='".$sfile0."'" ;
$res=mysql_query($consulta) or die ("consulta fallo2rriendo");
$num=mysql_num_rows($res);
?>
<tr>
<form name="form3" method="post" action="resultados_busqueda.php">
<td>
<p><strong><em><font size="2">COMUNA:</font></em></strong> </td>
<td> <select name="sfile1" >
<?php
For ($i=0;$i<$num;$i++)
{
$a=mysql_result($res,$i,0);
echo "<option value=\"".$a."\">".$a;
}
mysql_close();
?>
<input type=hidden name=sfile0 value="<?php ECHO $sfile0; ?>">
</select>
<input type="submit" name="Submit3" value="BUSCAR">
</form></td>
</tr>
<td> </td>
<td><form name="form4" method="post" action="resultados_busqueda_todos.php">
<input type="submit" name="Submit4" value="VER TODO EL SCTOCK ">
</form> </tr>
</table>
<p> </p>
</div>
</body>
</html>
<?php
}
?> |