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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| <?php
mysql_connect('xxxxxxx','xxxxz','xxxx');
mysql_select_db('xxxxxxxxxxxx');
if(isset($_GET['recherche']))
{
$rec = htmlentities($_GET['recherche']);
}
else
{
$rec = 'noresult';
}
$type = 1;
$req = 'SELECT photo, titre, x_personnes, titre_url FROM cuisine WHERE ';
if($type==1)
{
$mots = explode(' ',$rec);
foreach($mots as $mot)
{
$req .= ' titre_recherche LIKE "%'.$mot.'%" OR';
}
$req .= ' 1=0';
}
elseif($type==2)
{
$mots = explode(' ',$rec);
foreach($mots as $mot)
{
$req .= ' titre_recherche LIKE "%'.$mot.'%" AND';
}
$req .= ' 1=1';
}
else
{
$req .= 'titre LIKE "%'.$rec.'%"';
}
$req .= ' order by id asc';
$requete = mysql_query($req);
?>
<?php
while($dnn = mysql_fetch_array($requete))
{
?>
<a href="<?php echo $dnn['titre_url'];?>.php">
<?php echo '<img src="../images/'.$dnn['photo'].'" align=middle ?>';?></a>
<a href="<?php echo $dnn['titre_url'];?>.php">
<?php echo $dnn['titre'];?></a>
<BR>
<BR>
<?php
}
?> |