If you want to have an idea of my problem you can look on this page :
http://www.ubaye-verdon.net/provence/formthmH.php
type for example : acqu* in the query box and you will see 19 results for this query
I don't understand where and how integrate your code in mine...
Here is the lines giving the result :
while ($sql = mysql_fetch_array($resultat))
{
echo("<tr valign='top'>\n");
$sjhProv = utf8_encode(($sql['sjhProv']));
echo("<td class='honorat'>$sjhProv</td>\n");
$categorie = (($sql['categorie']));
echo("<td class='catg'>$categorie</td>\n");
$sjhPhonet = utf8_encode(($sql['sjhPhonet']));
echo("<td class='etym'>$sjhPhonet</td>\n");
$sjhSynon = utf8_encode(($sql['sjhSynon']));
echo ("<td class='oc'>$sjhSynon</td>\n");
$sjhLgmed = utf8_encode(($sql['sjhLgmed']));
echo ("<td class='med'>$sjhLgmed</td>\n");
$sjhFrancais= utf8_encode(($sql['sjhFrancais']));
echo ("<td class='fr'>$sjhFrancais</td>\n");
$sjhLoc=utf8_encode(($sql['sjhLoc']));
echo ("<td class='loc'>$sjhLoc</td>\n");
$sjhLocfr=utf8_encode(($sql['sjhLocfr']));
echo ("<td class='locfr'>$sjhLocfr</td>\n");
$sjhEtym =utf8_encode (($sql['sjhEtym']));
echo ("<td class='etym'>$sjhEtym</td>\n");
echo("</tr>\n");
}
echo('</table>');
?>