merci adrien pour le coup de main mais ca ne m affiche rien en resultat de recherche pouvez vous voir ce qui cloche dans le code
base en mysql et code .php3
merci d avance
<html>
<head>
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Olivier Nepomiachty">
<meta name="generator" content="WebExpert 5">
<link rel="StyleSheet" type="text/css" href="style1.css">
</head>
<body>
<?
include ("connexionat.php3");
?>
<b>Recherche de documentation</b><br>
<form method="post" action="">
<table>
<tr>
<td>Categorie</td>
<td>
<select name="Categorie">Categorie
<option value="tv">tv
<option value="camescope">camescope
<option value="magnetoscope">magnetoscope
<option value="combi">combi
</option>
</select>
</td>
</tr>
<tr>
<td>Model</td>
<td><input type="text" name="Model" size="40" maxlength="256"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="rechercher"><input type="reset" value="Annuler"></td>
</tr>
</table>
</form>
<table width="200" border="1">
<?
$query = "select * from tbbouldoc where Categorie = '$Categorie' and Model = ' $Model ' " ; //"Select * from TaTable where marque='quelque chose' and model='autre chose'";
$result = mysql_query($query);
while ($row = mysql_fetch_array ($result)){
echo $row[0]."<BR/>";
}
?>
<tr>