IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

PHP & Base de données Discussion :

compteur d'affichage pour page dynamique [MySQL]


Sujet :

PHP & Base de données

  1. #1
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut compteur d'affichage pour page dynamique
    Bonjour à tous

    Je n'ai pas trouvé exactement ce que je cherche sur le forum...

    Sur un site d'annonces, je cherche à faire un compteur de visite qui s'incrémente à chaque affichage d'une annonce. Les compteurs seraient placé sur chaque page d'annonce. J'ai une table 'annonce' avec un id. Quelqu'un à une idée?

  2. #2
    Expert éminent sénior

    Profil pro
    Inscrit en
    Juin 2002
    Messages
    6 152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2002
    Messages : 6 152
    Points : 17 778
    Points
    17 778
    Par défaut
    Citation Envoyé par titi63
    Les compteurs seraient placé sur chaque page d'annonce.
    Une seule ne suffit pas ? (il suffit de faire passer cet id dans l'URL : méthode GET)

    Citation Envoyé par titi63
    J'ai une table 'annonce' avec un id. Quelqu'un à une idée?
    Une requête UPDATE :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <?php
    if (isset($_GET['id'])) {
        // Ne pas oublier de faire la connexion à la base (mysql_connect + mysql_select_db)
        $id = intval($_GET['id']);
        if (mysql_query("UPDATE annonce SET compteur = compteur + 1 WHERE id = $id;")) {
            echo 'Incrémentation OK';
        } else {
            die(mysql_error());
        }
    }
    ?>


    Mais il faudrait être plus précis dans votre demande et éventuellement nous exposer ce que vous avez déjà codé.

  3. #3
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut
    merci pour votre reponse
    voici donc le site pour etre plus précis : http://www.allimmo.fr/agence/search_.php
    J'aimerais que sur chaque annonce soit indiqué :
    cette annonce à été vue xx fois.

  4. #4
    Expert éminent sénior

    Profil pro
    Inscrit en
    Juin 2002
    Messages
    6 152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2002
    Messages : 6 152
    Points : 17 778
    Points
    17 778
    Par défaut
    Vous avez déjà un champ dans votre table qui sert de compteur auquel cas il vous suffit de l'ajouter dans votre requête SELECT (à moins d'utiliser *) puis de l'afficher sur chaque annonce. Il ne devrait donc y avoir qu'une petite modification à apporter dans votre code (si vous ne voyez pas comment l'ajouter vous pouvez nous donner la structure de la table et le code de la requête + boucle).

  5. #5
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut
    voici la structure : (je n'ai pas le code de la requête)

    id bigint(10) NO PRI NULL auto_increment
    propertyref varchar(50) YES NULL
    propertytype int(11) NO MUL 0
    propertytypengl varchar(255) YES NULL
    propertyprice int(11) NO MUL 0
    propertypieces varchar(255) YES NULL
    propertysurface varchar(255) YES NULL
    propertysituation varchar(255) YES NULL
    propertyexposition varchar(255) YES NULL
    propertyannee varchar(255) YES NULL
    propertybedrooms int(11) NO MUL 0
    propertysurfaceterrain varchar(255) YES NULL
    propertynatureterrain varchar(255) YES NULL
    propertydependance varchar(255) YES NULL
    propertychauffage varchar(255) YES NULL
    propertygeneral varchar(255) YES NULL
    propertyaddress varchar(200) YES NULL
    propertylocation int(11) NO 0
    propertysecteur varchar(255) YES NULL
    shortdescription varchar(255) YES NULL
    longdescription blob NO
    propertystatus varchar(150) YES NULL
    propertyphoto1 varchar(200) YES NULL
    propertyphoto2 varchar(200) YES NULL
    propertyphoto3 varchar(200) YES NULL
    propertyphoto4 varchar(200) YES NULL
    propertyviews int(11) NO 0
    propertyshow tinyint(1) NO MUL 0
    dateadded varchar(200) NO MUL

  6. #6
    Expert éminent sénior

    Profil pro
    Inscrit en
    Juin 2002
    Messages
    6 152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2002
    Messages : 6 152
    Points : 17 778
    Points
    17 778
    Par défaut
    Citation Envoyé par titi63
    (je n'ai pas le code de la requête)
    search_.php fait bien ça, non ? C'est le champ propertyviews votre compteur ?

  7. #7
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut
    Xcuse, je ne suis pas encore familier avec ces thermes...

    C'est bien ça dont tu parle?
    if ( ! $sql->isConnected () )
    {
    die ( $DatabaseError );
    }

    $layoutId = $cgi->getValue ( "id" );

    //$rows = $sql->execute ( "SELECT * FROM " . $property_table . "
    //
    //WHERE id=" .
    //$sql->quote ( $layoutId ) . " AND propertyshow=1 LIMIT 1",
    //SQL_RETURN_ASSOC );



    $rows = $sql->execute ( "SELECT
    p.id AS id,
    p.propertyprice AS propertyprice,
    p.propertyaddress AS propertyaddress,
    pl.propertylocation AS propertylocation,
    pt.propertytype AS propertytype,
    p.propertyref AS propertyref,
    p.propertypieces AS propertypieces,
    p.propertysurface AS propertysurface,
    p.propertysituation AS propertysituation,
    p.propertyexposition AS propertyexposition,
    p.propertyannee AS propertyannee,
    p.propertysurfaceterrain AS propertysurfaceterrain,
    p.propertynatureterrain AS propertynatureterrain,
    p.propertydependance AS propertydependance,
    p.propertychauffage AS propertychauffage,
    p.propertygeneral AS propertygeneral,
    p.propertybedrooms AS propertybedrooms,
    p.propertyphoto1 AS propertyphoto1,
    p.propertyphoto2 AS propertyphoto2,
    p.propertyphoto3 AS propertyphoto3,
    p.propertyphoto4 AS propertyphoto4,
    p.shortdescription AS shortdescription,
    p.longdescription AS longdescription
    FROM
    " . $property_table . " p
    INNER JOIN
    " . $propertytypes_table . " pt ON (p.propertytype=pt.id)
    INNER JOIN
    " . $propertylocations_table . " pl ON (p.propertylocation=pl.id)
    WHERE p.id=" .
    $sql->quote ( $layoutId ) . " AND p.propertyshow=1 LIMIT 1",
    SQL_RETURN_ASSOC )or die('requete =>'.$rows.'<br>
    error->'.mysql_error());;
    2 - OUI propertyviews est mon compteur

  8. #8
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut
    et voici le code complet

    Code php : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    <?php
      require ( "admin/config.php" );
      require ( "CGI.php" );
      require ( "SQL.php" );
     
      $cgi = new CGI ();
      $sql = new SQL ( $DBusername, $DBpassword, $server, $database );
     
      if ( ! $sql->isConnected () )
      {
        die ( $DatabaseError );
      }
     
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Formulaire de recherche de l'agence All'Immo</title>
    <LINK REL="STYLESHEET" HREF="style.css"> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    var submitcount=0;
    function reset() {
    document.emailform.name.value="";
    document.emailform.email.value="";
    document.emailform.address.value="";
    }
     
    function checkFields() {                    
    if (                                    
     (document.emailform.name.value=="") ||
     (document.emailform.email.value=="")  ||
     (document.emailform.address.value==""))  
       {
       alert("Remplisser votre nom, Email et les détails de votre demande.");
       return false;
       }
     
    else 
       {
       if (submitcount == 0)
          {
          submitcount++;
          return true;
          }
       else 
          {
          alert("Le formulaire a déjà été envoyé.");
          return false;
          }
       }
    }
    function PopupImage(img) { 
    titre="Agrandissement"; 
    w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no'); 
    w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
    w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
    w.document.write("<BODY onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
    w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
    w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt=' Image dans pop-up '>"); 
    w.document.write("</TD></TR></TABLE>");
    w.document.write("</BODY></HTML>"); 
    w.document.close(); 
    } 
    //  End --></SCRIPT> 
    <style type="text/css">
    <!--
    .Style1 {font-size: 18px}
    .Style2 {font-size: 16px; }
    -->
    </style>
    </head>
    <body background="boutons/French/fondjaune.JPG">
    <?php
     
      if ( $cgi->getValue ( "op" ) == "SendInformationRequest" )
      {
        $yoursubject = "Demande d'information sur le bien Ref: " .
                       $cgi->getValue ( "propertyref" );
        $emailtext = "
    -----------------------------------------------------------------------------
       Demande d'information sur un bien
    -----------------------------------------------------------------------------
    Un visiteur du site web souhaite plus de renseignement.
    
    DETAILS DU BIEN
    Référence du bien :      " . $cgi->getValue ( "propertyref" ) . "
    Addresse du bien:  " . $cgi->getValue ( "propertyaddress" ) . " " .
        $cgi->getValue ( "propertylocation" ) . "
    Prix du bien:    " . $CurrencyUnit . $cgi->getValue ( "propertyprice" ) . "
    
    DETAILS DE LA DEMANDE
    Nom :    " . $cgi->getValue ( "name" ) . "
    Email:   " . $cgi->getValue ( "email" ) . "
    
    " . $cgi->getValue ( "address" ) . "
    
    ________________________________
    Fin du mail
    ";
     
        $yoursubject = stripslashes ( $yoursubject ); 
        $emailtext = stripslashes ( $emailtext );
        @mail ( $cgi->getValue ( "adminemailaddress" ), $yoursubject, $emailtext,
            "From: " . $cgi->getValue ( "email" ) ); 
    ?>
    <br><br><br><p align=center><font size="-1"><b>Merci pour votre demande d'informations.</b><br>La demande a bien été envoyé.</font></p>
    <br><br><p align=center>Prenez le temps de continuer a visiter notre site web.</p><br>
    <p align="center">[<a href="?op=search&pt=&pp=2000000&pb=0">Voir tous nos biens</a>]</p><br><br>
    <?php
     
        exit ();
      } 
     
      if ( $cgi->getValue ( "op" ) == "mi" )
      {
     
    ?>
    <?php
     $cgi = new CGI ();
      $sql = new SQL ( $DBusername, $DBpassword, $server, $database );
     
      if ( ! $sql->isConnected () )
      {
        die ( $DatabaseError );
      }
     
      $layoutId = $cgi->getValue ( "id" );
     
      //$rows = $sql->execute ( "SELECT * FROM " . $property_table . " 
      //
      //WHERE id=" .
        //$sql->quote ( $layoutId ) . " AND propertyshow=1 LIMIT 1",
        //SQL_RETURN_ASSOC );
     
     
     
     $rows = $sql->execute ( "SELECT 
            p.id                     AS id,
            p.propertyprice          AS propertyprice,
            p.propertyaddress        AS propertyaddress,
            pl.propertylocation      AS propertylocation,
            pt.propertytype          AS propertytype,
            p.propertyref            AS propertyref,
            p.propertypieces         AS propertypieces,
            p.propertysurface        AS propertysurface,
            p.propertysituation      AS propertysituation,
            p.propertyexposition     AS propertyexposition,
            p.propertyannee          AS propertyannee,
    		p.propertysurfaceterrain AS propertysurfaceterrain,
            p.propertynatureterrain  AS propertynatureterrain, 
            p.propertydependance     AS propertydependance,
            p.propertychauffage      AS propertychauffage,
            p.propertygeneral        AS propertygeneral,
    	    p.propertybedrooms       AS propertybedrooms,
            p.propertyphoto1         AS propertyphoto1,
            p.propertyphoto2         AS propertyphoto2,
            p.propertyphoto3         AS propertyphoto3,
            p.propertyphoto4         AS propertyphoto4,
            p.shortdescription       AS shortdescription,
    		p.longdescription        AS longdescription
          FROM
            " . $property_table . " p
            INNER JOIN
            " . $propertytypes_table . " pt ON (p.propertytype=pt.id)
            INNER JOIN
            " . $propertylocations_table . " pl ON (p.propertylocation=pl.id)
          WHERE p.id=" .
        $sql->quote ( $layoutId ) . " AND p.propertyshow=1 LIMIT 1",
    		SQL_RETURN_ASSOC )or die('requete =>'.$rows.'<br> 
    error->'.mysql_error());; 
     
     
      $row = $rows [ 0 ];
     
      $Price = number_format ( $row [ 'propertyprice' ], 0, ".", " " );
     
      $sql->execute ( "UPDATE " . $property_table .
          " SET propertyviews=(propertyviews + 1) WHERE id=" .
          $sql->quote ( $layoutId ) . " LIMIT 1" );
     
    ?><center><p><br>Vous avez souhaité voir plus d'informations concernant ce bien </b><br></br>
    <b><a href="search_.php" class="Style1">Retourner au formulaire de recherche</a></b></p>
    </center><br><br>
     
     
     
    <TABLE WIDTH="100%" CELLPADDING="10" CELLSPACING="5"> 
        <TR VALIGN="TOP"> 
          <TD VALIGN="TOP" ALIGN="LEFT"> 
    	      <TD VALIGN="TOP" ALIGN="LEFT" bgcolor="#FFFFFF">
     
    	  <P ALIGN="CENTER"><a
        href="javascript:history.go(-1)"><img src="<?php echo $ImageURLFrench;
        ?>retour.gif" border="0"></a> <a href="#CONTACT"><img
      src="<?php echo $ImageURLFrench; ?>demande_information.gif" border="0"></a> </p> 
      <br>
     
     
     
      <P ALIGN="CENTER">
           <?php
      if ( ! $row [ 'propertyphoto1' ] )
      {
        ?><img src="<?php echo $ImageURLFrench; ?>no_image.jpg" height="<?php
        echo $ShowImageHeight; ?>" width="<?php echo $ShowImageWidth; ?>"><?php
      }
      else
      {
        ?>
     
     
    <a href="javascript:PopupImage('http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto1']; ?>')"><img src="http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto1']; ?> " height="<?php echo $ShowImageHeight; ?>" width="<?php echo $ShowImageWidth; ?>"border="0" alt="Cliquer pour agrandir" /></a>
    <?php
    }
     
    if ( ! $row [ 'propertyphoto2' ] )
      {
        ?><?php
      }
      else
      {
         ?>	
      <a href="javascript:PopupImage('http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto2']; ?>')"><img src="http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto2']; ?> " height="<?php echo $ShowImageHeight; ?>" width="<?php echo $ShowImageWidth; ?>"border="0" alt="Cliquer pour agrandir" /></a>
    <?php
    }
     
     
    if ( ! $row [ 'propertyphoto3' ] )
      {
        ?><?php
      }
      else
      {
        ?>	
    	<a href="javascript:PopupImage('http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto3']; ?>')"><img src="http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto3']; ?> " height="<?php echo $ShowImageHeight; ?>" width="<?php echo $ShowImageWidth; ?>"border="0" alt="Cliquer pour agrandir" /></a>
    <?php
    }
     
     
     if ( ! $row [ 'propertyphoto4' ] )
      {
        ?><?php
      }
      else
      {
        ?><a href="javascript:PopupImage('http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto4']; ?>')"><img src="http://www.allimmo.fr/agence/photos/<?php echo $row['propertyphoto4']; ?> " height="<?php echo $ShowImageHeight; ?>" width="<?php echo $ShowImageWidth; ?>"border="0" alt="Cliquer pour agrandir" /></a>
    <?php
    }
    ?><p></P></br>
     
    <hr> 
     
      <P class="Style2" >
      Référence du bien :&nbsp;<strong><?php echo $row [ "propertyref" ]; ?></strong><br>
      Prix :&nbsp;<strong><?php echo $Price; ?>&nbsp;<?php echo $CurrencyUnit; ?></strong><BR>
      Type de bien :&nbsp;<strong><?php echo $row [ "propertytype" ];?></strong><BR>						
      Chambres : &nbsp;<strong><?php echo $row [ "propertybedrooms" ]; ?></strong><BR>						
      Type :&nbsp;<strong><?php echo $row [ "propertypieces" ]; ?></strong><BR> 
      Surface habitable :&nbsp;<strong><?php echo $row [ "propertysurface" ];?></strong> m²<BR>
      Situation : &nbsp;<strong><?php echo $row [ "propertysituation" ]; ?></strong><BR>
      Exposition :&nbsp;<strong><?php echo $row [ "propertyexposition" ];?></strong><BR> 
      Année de construction :&nbsp;<strong><?php echo $row [ "propertyannee" ];?></strong><BR> 
      Surface du terrain :&nbsp;<strong><?php echo $row [ "propertysurfaceterrain" ];?></strong> m²<BR>
      Nature du terrain :&nbsp;<strong><?php echo $row [ "propertynatureterrain" ];?></strong><BR>
      Dépendance :&nbsp;<strong><?php echo $row [ "propertydependance" ];?></strong><BR>
      Type de chauffage :&nbsp;<strong><?php echo $row [ "propertychauffage" ];?></strong><BR>
      Etat général du bien :&nbsp;<strong><?php echo $row [ "propertygeneral" ];?></strong><BR>
      Contact :&nbsp;<strong><?php echo $row [ "propertyaddress" ]?></strong>  </P>
      <?php echo nl2br($row [ "longdescription" ]); ?><br> 
      <P>
     
        <?php
    $compteur = mysql_query("SELECT * FROM pm_properties WHERE page = $page")or die(mysql_error(error));  
    $donnees = mysql_fetch_array($compteur); 
    $hit = $donnees['propertyviews'];  
    echo $hit; ?>
     
     
      </P>

  9. #9
    Expert éminent sénior

    Profil pro
    Inscrit en
    Juin 2002
    Messages
    6 152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2002
    Messages : 6 152
    Points : 17 778
    Points
    17 778
    Par défaut
    A la première requête il faut ajouter le champ propertyviews à la sélection :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    p.propertyviews AS propertyviews,
    Le compteur est déjà incrémenté à la lecture de l'annonce semble-t-il (mais après le SELECT donc l'affichage courant ne fait pas partie du résultat affiché).

    Pour afficher le compteur dans le détail de l'annonce il vous suffit d'ajouter :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Annonces vues <strong><?php echo $row ['propertyviews']?></strong> fois
    Après :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Contact :&nbsp;<strong><?php echo $row [ "propertyaddress" ]?></strong>
    Par exemple.

    Ai-je bon ?

  10. #10
    Membre à l'essai
    Inscrit en
    Avril 2003
    Messages
    45
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 45
    Points : 24
    Points
    24
    Par défaut
    C'est tout à fait ça...
    Super merci

    http://www.allimmo.fr/agence/search_.php?op=mi&id=95

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [PHP 5.3] Cache PHP pour pages dynamiques
    Par Mister Nono dans le forum Langage
    Réponses: 2
    Dernier message: 24/03/2011, 12h32
  2. [PHP 5.0] Aide pour page dynamique avec un .Jpeg
    Par Leod93 dans le forum Langage
    Réponses: 4
    Dernier message: 01/08/2009, 21h18
  3. Réponses: 0
    Dernier message: 13/06/2008, 14h36
  4. Réponses: 1
    Dernier message: 10/03/2008, 15h46
  5. Compteur d'affichage d'une page
    Par Maria1505 dans le forum Langage
    Réponses: 8
    Dernier message: 17/12/2006, 12h42

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo