hola maestro el problema anterior lo sulucione , pero ahora le traigo otro problema tengo una busqueda esta busqueda la pongo dentro de tablas , pero hay un boton "buscar" que sale de la tabla deberia estar al lado derecho del select de comuna , pero no se que pasa porque en diseño el boton aparece donde lo quiero , pero al ejecutarlo lo pone en donde no deberia estar
aqui se ve como sale cuando lo ejecuta , fijense en el boton "buscar" sobre la tabla ese es el del problema:
http://www.usuarios.lycos.es/elaaa/buscar/B1.jpg
les mando el codigo para ver si encuentran la fallita gracias...
<table width="75%" border="1">
<form name="form1" method="post" action="">
<tr>
<td><em><strong>TIPO DE PROPIEDAD: </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);
echo "<option value=\"".$a."\">".$a;
}
/*ECHO"</td><BR>";
ECHO "<BR>";
echo "<td width=\"75%\"><input type="submit" name=boton2 value=BUSCAR>";
ECHO "</FORM></td><BR>";*/
mysql_close();
?>
</select>
<input type="submit" name="Submit" value="BUSCAR"></td>
</form> </tr>
<tr> <td> </td>
<td><form name="form2" method="post" action="">
<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 tipo='".$sfile0."'" ;
$res=mysql_query($consulta) or die ("consulta fallo2");
$num=mysql_num_rows($res);
?>
<tr>
<form name="form3" method="post" action="">
<td><p><strong><em>COMUNA:</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;
}
ECHO"</td>";
mysql_close();
?>
</select>
<input type="submit" name="Submit3" value="BUSCAR">
</form></td></tr>
<td> </td>
<td><form name="form4" method="post" action="">
<input type="submit" name="Submit4" value="VER TODO EL SCTOCK"></td>
</form> </tr>
</table>
<p> </p>
</div>
</body>
</html>
<?php
}
?>