salut à tous

je sais pas si j'arrive a vous exprimé mmon besoins d'aide

depuis peu de temps je suis entrain de créé un mini-moteur de recherche pour mon site, bien que dans mon base de donnée il ya beaucoup de tables je utilise switch

je trois mode de recherche

switch($type)
{
case 'ben':

....// ici (9) requetes sql et l'affichage de resultat

break;
case 'pc':
.......// ici requete sql et l'affichage de resultat
break;
case 'per':
.......// ici requete sql et l'affichage de resultat

jusqu"à ici sa cool bien alors ma problème ce que pour le 1 mode de recherche il y'a 9 requete et chaque requete retourne resultat defférente de l'autre en fait chaque table dans ma base avoir une requete

alors losque je saisit le numéro de série et je choisit le mode de recherche de type 'ben' si meme il ne retourne rien il aura affichage de table vide

alors voici la partie de mon code concernant
switch($type)
{
case 'ben':
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
function affiche_recherche($rech,$type)
   {
 
 switch($type)
{
case 'ben': /*****************************  Type de recherche == ben  ******************************************************/
 
    $requete = "select  codebar as CodeBarres,nserie as NuméroDeserie,type as Type ,NomPoste as NomPoste, nom as Nom,prenom as Prénom from pc,emploiye,bonaffectation where pc.id_pc=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND  emploiye.matricule='".$rech."'  order by nom ,prenom ";
 
 
$res = mysql_query($requete) or exit(mysql_error());
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Ordinateur </B></FONT></div></legend>
<br/><div align="left"><table  border="1" class="kt_collection" ><tr >';
 
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th >';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
    $requete1 = "select codebar as CodeBarres,nserie as NuméroDeserie, nom as Nom,prenom as Prénom from imprimante,emploiye,bonaffectation where imprimante.id_imp=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete1) or exit(mysql_error());
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Imprimante </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
 
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
   $requete2 = "select codebar as CodeBarres,nserie as NuméroDeserie , nom as Nom,prenom as Prénom from scanner,emploiye,bonaffectation where scanner.id_sc=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete2) or exit(mysql_error());
 
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Scanner </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
 
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
    $requete3 = "select codebar as CodeBarres,nserie as NuméroDeserie , nom as Nom,prenom as Prénom from ecran ,emploiye,bonaffectation where  ecran.id_ec=bonaffectation.id_mat and bonaffectation.id_emp=emploiye.id_emp AND  emploiye.matricule='".$rech."' order by nom ,prenom ";
 
/***********************************************************************************/
 
$res = mysql_query($requete3) or exit(mysql_error());
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Ecran </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
 
  $requete4 = "select codebar as CodeBarres,nserie as NuméroDeserie , nom as Nom,prenom as Prénom from disque,emploiye,bonaffectation where disque.id_dis=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete4) or exit(mysql_error());
 
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Disque Dur </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
   $requete5 = "select codebar as CodeBarres , nom as Nom,prenom as Prénom from flash,emploiye,bonaffectation where flash.id_fl=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete5) or exit(mysql_error());
 
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Flash </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
 
    $requete6 = "select codebar as CodeBarres , nom as Nom,prenom as Prénom from  ram,emploiye,bonaffectation where ram.id_ram=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete6) or exit(mysql_error());
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Mémoire </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
    $requete7 = "select codebar as CodeBarres , nom as Nom,prenom as Prénom from cle,emploiye,bonaffectation where cle.id_cl=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete7) or exit(mysql_error());
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Clé wifi </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';
 
 
 
 
	  $requete11 = " select  codebar as CodeBarres , nom as Nom,prenom as Prénom from cartouche,emploiye,bonaffectation where cartouche.id_car=bonaffectation.id_mat AND bonaffectation.id_emp=emploiye.id_emp AND emploiye.matricule='".$rech."'";
 
/***********************************************************************************/
 
$res = mysql_query($requete11) or exit(mysql_error());
 
 
echo ' <legend class="blue"> <div align="left" class="style3"><FONT face=arial color="#0099FF",sans-serif size=+1><B>Cartouche </B></FONT></div></legend>
<br/><div align="left"><table border="1" class="kt_collection"><tr>';
for ($i = 0; $i < mysql_num_fields($res); $i++) {
    echo '<th>';
    echo mysql_field_name($res, $i);
    echo '</th>';
}
 
echo '</tr>';
 
while ($row = mysql_fetch_row($res)) {
    echo '<tr>';
 
    for ($j = 0; $j < count($row); $j++) {
        echo '<td>';
        echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
        echo '</td>';
    }
 
    echo '</tr>';
}
 echo '</table></div><br/>';