Bonjour voilà j'aimerai bien faire une recherche sur plusieurs critères j'aimerais un petit coût de pouce ci-cela est possible.

mon code html

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<?php 
include("cssstyle/haut.php");
?>
<br /><br />
<form method="post" action="search-val.php">
<table width="40%" border="0" align="center">
  <tr bgcolor="#0099CC">
    <td align="center"><font  color="#FFFFFF"><b>Recherche d&acute;un bien ?</b></font></td>
  </tr>
</table>
<table align="center">
            <tr>
            <td><b>Type de bien :</b></td>
            <td>
              <select class="select" name="type_bien" style="width:160px;" />
              <option value="Appartement &agrave; Louer">Appartement &agrave; Louer</option>
              <option value="Appartement &agrave; Vendre">Appartement &agrave; Vendre</option>
              <option value="Chalet &agrave; Louer">Chalet &agrave; Louer</option>
              <option value="Chalet &agrave; Vendre">Chalet &agrave; Vendre</option>
              <option value="Meubl&eacute; &agrave; Louer">Meubl&eacute; &agrave; Louer</option>
              <option value="Collocation">Collocation</option>
              <option value="Ferme &agrave; Louer">Ferme &agrave; Louer</option>
              <option value="Ferme &agrave; Vendre">Ferme &agrave; Vendre</option>
              <option value="G&icirc;te &agrave; Louer">G&icirc;te &agrave; Louer</option>
              <option value="G&icirc;te &agrave; Vendre">G&icirc;te &agrave; Vendre</option>
              <option value="Kots &agrave; Louer">Kots &agrave; Louer</option>
              <option value="Kots &agrave; Vendre">Kots &agrave; Vendre</option>
              <option value="Maison &agrave; Louer">Maison &agrave; Louer</option>
              <option value="Maison &agrave; Vendre">Maison &agrave; Vendre</option>
              <option value="Studio &agrave; Louer">Studio &agrave; Louer</option>
              <option value="Studio &agrave; Vendre">Studio &agrave; Vendre</option>
              <option value="Terrain &agrave; B&acirc;tir">Terrain &agrave; B&acirc;tir</option>
              <option value="Terrain Agricole">Terrain Agricole</option>
              </select>
            </td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td><b>Pays :</b></td>
            <td><select class="select" name="pays" style="width:160px;"></select></td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td><b>R&eacute;gion :</b></td>
            <td><select class="select" name="province" style="width:160px;"></select></td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td><b>Commune :</b></td>
            <td><select class="select" name="ville" style="width:160px;"></select></td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td><b>Prix entre :</b></td>
            <td><input class="input" name="prix" type="text" style="width:62px;" />
            &nbsp;<b> Et </b>&nbsp;
            <input class="input" name="prix1" type="text" style="width:62px;" /></td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td><b>Vendeur :</b></td>
            <td><select class="select" name="vendeur" style="width:160px;"></select></td>
            <td>&nbsp;</td>
            <td><input type="submit" value="Recherche"></td>            
</tr>
</table>
<br />
<table width="100%" border="0" align="center">
  <tr>
    <td align="center"><img src="cssstyle/imdesign/pub1.png" width="150" height="150" border="0"></td>
    <td align="center"><img src="cssstyle/imdesign/pub1.png" width="150" height="150" border="0"></td>
    <td align="center"><img src="cssstyle/imdesign/pub1.png" width="150" height="150" border="0"></td>
    <td align="center"><img src="cssstyle/imdesign/pub1.png" width="150" height="150" border="0"></td>
  </tr>
</table>
</form>
 
 
<?php
include("cssstyle/bas.php");
?>