Bonjour à Tous,

Je suis débutant et je recherche à afficher des informations de ma base de données en fonction d'un champ.

j'ai donc 2 fichiers le premier avec mon formulaire

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr" ><meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
 
<form method="get" action="bdd.php">
 
<label for="lof"><strong>LOF du chien</strong> :</label>
			<input type="text" name="lof" /><br /><br />
			<input type="submit" value="Rechercher le chien" />
</form>	
</html>

Et le deuxième avec ma requête



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
<?php
    $host_name  = "******";
    $database   = "******";
    $user_name  = "******";
    $password   = "******";
 
    $connect = mysqli_connect($host_name, $user_name, $password, $database);
    if (mysqli_connect_errno())
    {
    echo "La connexion au serveur MySQL n'a pas abouti : " . mysqli_connect_error();
    }
?>
 
 
 
    <?php
 
$lof = $_GET['lof'];
$reponse = mysql_query("SELECT * FORM Chien WHERE LOF like \"%\"'$lof'\"%\";");
$donnees = mysql_fetch_array($reponse);
 
?>
Nom:<?php echo $donnees['NOM'];?>
 
<?php
 
mysql_close(); 
?>
Mais rien n'apparaît sur ma page

Merci d'avance pour votre aide