Barre de recherche SGBD PHP
Bonjour à tous :mouarf:
Voila j'ai un petit problème comme d'habitude ^^
Le problème est le suivant quand je recherche par matricule il ne trouve rien :?
HTML:
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| <html>
<head>
<title>Rechercher</title>
</head>
<body>
<form method="post" action="search.php">
<input type="text" name="q" placeholder="Matricule">
<input type="submit" name="submit" value="Rechercher">
</form>
</body>
</html> |
PHP:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?php
if (isset($_POST['submit'])) {
$connection = new mysqli("localhost", "root", "root");
$q = $connection->real_escape_string($_POST['q']);
$sql = $connection->query("SELECT matricule_employe FROM employe_table WHERE LIKE '%$q%'");
if ($sql->num_rows > 0) {
while ($data = $sql->fetch_array())
echo $data['matricule_employe'] . "<br>";
} else
echo "Votre requête de recherche ne correspond à aucune donnée";
}
?> |
Merci pour vos future réponse ^^
PS : Si vous voulez d'autre infos n'hésiter pas :mouarf: