
{filelink=12629}
<?php
if (is_null($_GET["recherche"])) {
print '<form method="'.htmlentities($_SERVER["PHP_SELF"]).'" method="GET">';
print ' <label>';
print ' Recherche:';
print ' <input type="text" name="recherche" id="recherche" />';
print ' </label>';
print ' <input type="submit" value="Go!" />';
print '</form>';
}
else
{
$recherche = $_GET["recherche"];
if (!get_magic_quotes_gpc( ))
{
$recherche = htmlentities($recherche);
}
if ($recherche != null )
{
print "Le mot clé de la recherche: <strong>$recherche</strong>.";
}
}
?>