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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
| <?php
session_start();
if(!isset($_SESSION['pseudo']) && !isset($_COOKIE['pseudo'])){
header('Location: erreur_auth.php?erreur=5');
}
else{
require 'config.php';
$connexion_sql = mysql_connect(DB_HOST,DB_LOGIN,DB_PASS);
$connexion_bdd = mysql_select_db(DB_BDD);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Exposez !</title>
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="design.css" />
</head>
<body>
<div id="corp"> <!-- Corp de la page -->
<div id="banniere"> <!-- Bannière de la page -->
</div>
<div id="menu"> <!-- Menu horizontal -->
<ul id="onglets"> <!-- Menu horizontal de la page -->
<li>
<a href="index.php">
Accueil
</a>
</li>
<?php if(isset($_SESSION['pseudo']) || isset($_COOKIE['pseudo'])){ echo '
<li>
<a href="exposez.php">
Exposez !
</a>
</li>
<li>
<a href="membre.php">
Ma page
</a>
</li>
'; } ?>
<li>
<a href="forum/index.php">
Forum
</a>
</li>
</ul>
</div>
<div id="menu_membre">
<?php
if(isset($_COOKIE['pseudo']) && $_COOKIE['pseudo'] !== ''){
$pseudo = $_COOKIE['pseudo'];
}
else{
$pseudo = $_SESSION['pseudo'];
}
$repertoire_photo_profil = 'photos/'.$pseudo.'/photo_profil/';
if(is_dir($repertoire_photo_profil)){
$scan = scandir($repertoire_photo_profil);
if(isset($scan[2])){
$largeur_maximum = 60;
$hauteur_maximum = 60;
$photo = $scan[2];
$photo_tmp = $repertoire_photo_profil.$scan[2];
include("redimensionner2.php");
echo '<img src="'.$photo_tmp.'" width="'.$largeur.'" height="'.$hauteur.'">';
}
}
?>
<a href="parametres.php">
Paramètres
</a>
<a href="messagerie.php">
Messagerie
</a>
<?php
$message_non_lu = mysql_query('SELECT lu FROM messagerie WHERE lu < 1 AND destinataire = "'.$pseudo.'"');
$retour = mysql_num_rows($message_non_lu);
if($retour != '0'){
echo '('.$retour.')';
}
?>
<a href="deconnexion.php">
Déconnexion
</a>
</div>
<div id="recherche">
<span class="sous_titre_bleu">
Recherche :
</span>
<br />
<br />
<?php
if(isset($_GET['recherche']) && $_GET['recherche'] !== null){
$recherche = mysql_real_escape_string($_GET['recherche']);
if(isset($_GET['categorie']) && isset($_GET['sexe'])){
$categorie = mysql_real_escape_string($_GET['categorie']);
$sexe = mysql_real_escape_string($_GET['sexe']);
echo "SELECT articles.article_id, articles.titre,articles.contenu, articles.membre_id FROM articles WHERE articles.titre LIKE '%$recherche%' OR articles.contenu LIKE '%$recherche%' AND articles.categorie='$categorie' AND articles.sexe='$sexe'";
$requete_article = mysql_query("SELECT articles.article_id, articles.titre,articles.contenu, articles.membre_id FROM articles WHERE articles.titre LIKE '%$recherche%' OR articles.contenu LIKE '%$recherche%' AND articles.categorie='$categorie' AND articles.sexe='$sexe'") or die('Erreur1 : '.mysql_error());
}
else{
echo "SELECT articles.article_id, articles.titre,articles.contenu, articles.membre_id, articles.photo FROM articles WHERE articles.titre LIKE '%$recherche%' OR articles.contenu LIKE '%$recherche%'";
$requete_article = mysql_query("SELECT articles.article_id, articles.titre,articles.contenu, articles.membre_id FROM articles WHERE articles.titre LIKE '%$recherche%' OR articles.contenu LIKE '%$recherche%'") or die('Erreur1 : '.mysql_error());
}
$nombre_retour_article = mysql_num_rows($requete_article);
echo '
<span class="sous_titre_bleu">
Résultat :
</span>
<br />
<br />
Articles : '.$nombre_retour_article.' résultat(s)
<br />
<br />';
while($retour_article = mysql_fetch_assoc($requete_article)){
echo '<a href="membre.php?id='.$retour_article['membre_id'].'&article='.$retour_article['article_id'].'">
'.$retour_article['titre'].'
</a>
<br />';
}
}
elseif(isset($_POST['submit'])){
function verification_envoie(){
if(isset($_GET['recherche_avancee'])){
if(empty($_POST['sexe']) && $_POST['categorie'] == 'Sélectionnez'){
$erreur = 'Veuillez renseigner tous les champs du formulaire';
return false;
}
}
if(empty($_POST['recherche'])){
$erreur = 'Veuillez renseigner tous les champs du formulaire';
return false;
}
elseif($_POST['recherche'] == 'Pseudo, articles...'){
return false;
}
else{
return true;
}
}
$verif = verification_envoie();
if($verif == true){
if(isset($_GET['recherche_avancee'])){
print("<script language = \"JavaScript\">");
print("location.href = 'test.php?recherche=".$_POST['recherche']."&sexe=".$_POST['sexe']."&categorie=".$_POST['categorie']."';");
print("</script>");
}
else{
print("<script language = \"JavaScript\">");
print("location.href = 'test.php?recherche=".$_POST['recherche']."';");
print("</script>");
}
}
else{
if(isset($erreur)){
echo '<span class="erreur_para">'.$erreur.'</span>';
}
}
}
else{
// Rien
}
?>
<form method="post">
<input type="text" name="recherche" style="width:100%" onclick="value=('');" value="Pseudo, articles...">
<?php
if(isset($_GET['recherche_avancee'])){
echo '
<a href="test.php">
Retour
</a>
<br />
<br />
Catégorie :
<br />
<select name="categorie">
<option selected="selected">
Sélectionnez
</option>
<option>
Astuce rapide
</option>
<option>
Déco fait main
</option>
<option>
Pas chère !
</option>
<option>
Occasion spéciale
</option>
</select>
<br />
<br />
Dédié aux :
<br />
Hommes : <input type="radio" name="sexe" value="homme">
Femmes :<input type="radio" name="sexe" value="femme">
<br />
<br />
<input type="submit" name="submit" value="Rechercher">';
}
else{
echo '
<input type="submit" name="submit" value="Rechercher">
<br />
<br />
<a href="test.php?recherche_avancee">
Recherche avancée
</a>';
}
?>
</form>
</div>
</div>
</body>
</html>
<?php
}
?> |
Partager