Champs Autocomplete
Posté : 13 mars 2012, 12:18
Bonjour à tous,
J'ai réussi en fouillant un peu à droite et à gauche à faire un champs de recherche autocomplete:
FORMULAIRE DE RECHERCHE:
Si jamais vous avez une idée??
Merci
J'ai réussi en fouillant un peu à droite et à gauche à faire un champs de recherche autocomplete:
FORMULAIRE DE RECHERCHE:
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$("input#autocompletedep").autocomplete({
source: [<?php
mysql_connect("localhost","root","");
/* selection de la base de donnée mysql */
mysql_select_db("societe");
$sql = mysql_query("SELECT DISTINCT code_postal FROM entreprises_coordonnees");
while ($off = mysql_fetch_assoc($sql)) {
echo '"'.$off['code_postal'].'",';
}
mysql_close(); ?>]
});
});
</script>
<div class="titre_b">
<b><u>Activité</u></b>
<font style="font-size:9px; margin-left:10px;"><b><?php echo CHAMPS_OBLIGATOIRES; ?> (*)</b></font><br /><br />
<form action="" class="tableau_search" method="get">
<table align="center" border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td width="26%">Activité (*) : </td>
<td width="74%"><input id="autocomplete" type="text" size="30" name="activite" maxlength="50" class="inputText" /></td>
</tr>
<tr>
<td>Mot clé(s) : </td>
<td><input type="text" size="30" name="mots_cles" maxlength="50" class="inputText" /></td>
</tr>
<tr>
<td>Département : </td>
<td><input type="text" size="3" name="code_postal" maxlength="5" class="inputTextLittle" id="autocompletedep" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="left"><input type="submit" value="<?php echo RECHERCHER; ?>"></td>
</tr>
</table>
</form>
</div>
En fait ce que je souhaiterai faire c'est commencer la recherche par les première lettre taper, mais là ça bloque... lolSi jamais vous avez une idée??
Merci