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

Langage PHP Discussion :

Problème formulaire + PHP


Sujet :

Langage PHP

  1. #21
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut c_bou98
    C'est bon, mon code fonctionne enfin :

    Code : 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
     
    <?php if(!empty($_POST['m1'])){
    switch($_POST['m1'])
    {
        case('1'): { $choix[1]='Domicile'; break ; }
        case('2'): { $choix[1]='Nul'; break ; }
        case('3'): { $choix[1]='Extérieur'; break ; }
    }
    $match[1] = 'St Florent des Bois - St Prouant-Monsireigne';
    }
    if(!empty($_POST['m2'])){
    switch($_POST['m2'])
    {
        case('1'): { $choix[2]='Domicile'; break ; }
        case('2'): { $choix[2]='Nul'; break ; }
        case('3'): { $choix[2]='Extérieur'; break ; }
    }
    $match[2] = 'Hermenault Sérigné - Grosbreuil';
    }
    if(!empty($_POST['m3'])){
    switch($_POST['m3'])
    {
        case('1'): { $choix[3]='Domicile'; break ; }
        case('2'): { $choix[3]='Nul'; break ; }
        case('3'): { $choix[3]='Extérieur'; break ; }
    }
    $match[3] = 'Meilleraie-Tillay - St Aubin la Plaine';
    }
    if(!empty($_POST['m4'])){
    switch($_POST['m4'])
    {
        case('1'): { $choix[4]='Domicile'; break ; }
        case('2'): { $choix[4]='Nul'; break ; }
        case('3'): { $choix[4]='Extérieur'; break ; }
    }
    $match[4] = 'Nieul le Dolent - Les Essarts 2';
    }
    if(!empty($_POST['m5'])){
    switch($_POST['m5'])
    {
        case('1'): { $choix[5]='Domicile'; break ; }
        case('2'): { $choix[5]='Nul'; break ; }
        case('3'): { $choix[5]='Extérieur'; break ; }
    }
    $match[5] = 'Talmont St Hilare - Roche/Y Robretières 2';
    }
    if(!empty($_POST['m6'])){
    switch($_POST['m6'])
    {
        case('1'): { $choix[6]='Domicile'; break ; }
        case('2'): { $choix[6]='Nul'; break ; }
        case('3'): { $choix[6]='Extérieur'; break ; }
    }
    $match[6] = 'Roche/Y Généraudière - Nalliers Foot Espoir';
    }
    $destinataire = 'postmaster@usmeilleraiefoot.fr';
    $sujet = 'Résultats';
    $left = 'Pronostics';
    $right = '';
    $msg =  '';
    $i=0;
    while(isset($match[$i]))
    {
       $i++;
       $msg .= "\r\n".'a choisi "'.$choix[$i].'" pour '.$match[$i] ;
    }
    $var = 'From '. $left.' <'.$right.'>' ."r/n";
    mail($destinataire, $sujet, $msg, $var);
    ?>
    Dernier problème : je ne reçois aucun mail suite à la validation du formulaire. (pour info, j'utilise RoundCube et je suis chez OVH)

  2. #22
    Expert éminent sénior

    Avatar de FirePrawn
    Homme Profil pro
    Consultant technique
    Inscrit en
    Mars 2011
    Messages
    3 179
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Consultant technique

    Informations forums :
    Inscription : Mars 2011
    Messages : 3 179
    Points : 19 374
    Points
    19 374
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $var = 'From '. $left.' <'.$right.'>' ."r/n";
    Ce ne serait pas plutôt :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $var = 'From '. $left.' <'.$right.'>' ."\r\n";
    Avant toute chose : lire le mode d'emploi du forum et ses règles.
    Je ne réponds pas aux questions techniques en MP.

  3. #23
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut c_bou98
    En effet, je reçois désormais le mail.

    Mais voici le contenu de mon mail :

    From Pronostics <>



    Je ne reçois pas les résultats des pronostics..

  4. #24
    Expert éminent sénior

    Avatar de FirePrawn
    Homme Profil pro
    Consultant technique
    Inscrit en
    Mars 2011
    Messages
    3 179
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Consultant technique

    Informations forums :
    Inscription : Mars 2011
    Messages : 3 179
    Points : 19 374
    Points
    19 374
    Par défaut
    Vérifie tes variables $_POST, si ton contenu est vide, c'est qu'il ne passe pas dans tes if.
    Avant toute chose : lire le mode d'emploi du forum et ses règles.
    Je ne réponds pas aux questions techniques en MP.

  5. #25
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut c_bou98
    Pourtant, mes variables ont l'air correctes, non ?

  6. #26
    Expert éminent sénior

    Avatar de FirePrawn
    Homme Profil pro
    Consultant technique
    Inscrit en
    Mars 2011
    Messages
    3 179
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Consultant technique

    Informations forums :
    Inscription : Mars 2011
    Messages : 3 179
    Points : 19 374
    Points
    19 374
    Par défaut
    C'est pas le problème.

    Ca peut être bien écrit, si tes variables sont vides, tes tests sont faux, donc ça rentre pas dans la boucle if.

    Rajoute des echo 'test XXX ok' et tu verras s'il rentre dans les if ou non.
    Avant toute chose : lire le mode d'emploi du forum et ses règles.
    Je ne réponds pas aux questions techniques en MP.

  7. #27
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut Problème PHP
    J'ai mis des balises echo :

    Code : 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
     
    <?php if(!empty($_POST['m1'])){
    switch($_POST['m1'])
    echo "test XXX ok";
    {
        case('1'): { $choix[1]='Domicile'; break ; }
        case('2'): { $choix[1]='Nul'; break ; }
        case('3'): { $choix[1]='Extérieur'; break ; }
    }
    $match[1] = 'St Florent des Bois - St Prouant-Monsireigne';
    }
    if(!empty($_POST['m2'])){
    switch($_POST['m2'])
    echo "test XXX ok";
    {
        case('1'): { $choix[2]='Domicile'; break ; }
        case('2'): { $choix[2]='Nul'; break ; }
        case('3'): { $choix[2]='Extérieur'; break ; }
    }
    $match[2] = 'Hermenault Sérigné - Grosbreuil';
    }
    if(!empty($_POST['m3'])){
    switch($_POST['m3'])
    echo "test XXX ok";
    {
        case('1'): { $choix[3]='Domicile'; break ; }
        case('2'): { $choix[3]='Nul'; break ; }
        case('3'): { $choix[3]='Extérieur'; break ; }
    }
    $match[3] = 'Meilleraie-Tillay - St Aubin la Plaine';
    }
    if(!empty($_POST['m4'])){
    switch($_POST['m4'])
    echo "test XXX ok";
    {
        case('1'): { $choix[4]='Domicile'; break ; }
        case('2'): { $choix[4]='Nul'; break ; }
        case('3'): { $choix[4]='Extérieur'; break ; }
    }
    $match[4] = 'Nieul le Dolent - Les Essarts 2';
    }
    if(!empty($_POST['m5'])){
    switch($_POST['m5'])
    echo "test XXX ok";
    {
        case('1'): { $choix[5]='Domicile'; break ; }
        case('2'): { $choix[5]='Nul'; break ; }
        case('3'): { $choix[5]='Extérieur'; break ; }
    }
    $match[5] = 'Talmont St Hilare - Roche/Y Robretières 2';
    }
    if(!empty($_POST['m6'])){
    switch($_POST['m6'])
    echo "test XXX ok";
    {
        case('1'): { $choix[6]='Domicile'; break ; }
        case('2'): { $choix[6]='Nul'; break ; }
        case('3'): { $choix[6]='Extérieur'; break ; }
    }
    $match[6] = 'Roche/Y Généraudière - Nalliers Foot Espoir';
    }
    $destinataire = 'charly_bourasseau@voila.fr';
    $sujet = 'Résultats';
    $left = 'Pronostics';
    $right = '';
    $msg =  '';
    $i=0;
    while(isset($match[$i]))
    {
       $i++;
       $msg .= "\r\n".'a choisi "'.$choix[$i].'" pour '.$match[$i] ;
    }
    $var = 'From '. $left.' <'.$right.'>' ."\r\n";
    mail($destinataire, $sujet, $msg, $var);
    ?>
    Voici le message d'erreur affiché :

    Parse error: syntax error, unexpected T_ECHO, expecting ':' or '{' in /homez.150/usmeille/www/pronostics/envoi.php on line 6

  8. #28
    Expert éminent sénior

    Avatar de FirePrawn
    Homme Profil pro
    Consultant technique
    Inscrit en
    Mars 2011
    Messages
    3 179
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Consultant technique

    Informations forums :
    Inscription : Mars 2011
    Messages : 3 179
    Points : 19 374
    Points
    19 374
    Par défaut
    Mets tes echo entre le if et le switch.
    Avant toute chose : lire le mode d'emploi du forum et ses règles.
    Je ne réponds pas aux questions techniques en MP.

  9. #29
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut Problème PHP
    Je reçois maintenant le mail, mais je n'ai toujours pas mes résultats dessus..
    Juste From "Pronostics"..

  10. #30
    Expert confirmé
    Avatar de Thes32
    Homme Profil pro
    Développeur PHP, .Net, T-SQL
    Inscrit en
    Décembre 2006
    Messages
    2 379
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations professionnelles :
    Activité : Développeur PHP, .Net, T-SQL

    Informations forums :
    Inscription : Décembre 2006
    Messages : 2 379
    Points : 4 853
    Points
    4 853
    Par défaut
    salut,

    $match[0] n'existe pas...
    Développeur | Zend Certified Engineer

    Étapes Pour mieux se servir du forum:
    1. Commencez par lire les cours et tutoriels ;
    2. Faites une recherche;
    3. Faites un post si rien trouvé dans les deux étapes précédentes en respectant les règles;

    Nix>_Rien n'est plus pratique que la théorie

  11. #31
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut Problème PHP
    Voici mon nouveau code :

    Code : 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
     
    <?php
    if(!empty($_POST['m1'])){
    switch($_POST['m1'])
    {
        case('1'): { $choix[1]='Domicile'; break ; }
        case('2'): { $choix[1]='Nul'; break ; }
        case('3'): { $choix[1]='Extérieur'; break ; }
    }
    $match[1] = 'St Florent des Bois - St Prouant/Monsireigne';
    }
    if(!empty($_POST['m2'])){
    switch($_POST['m2'])
    {
        case('1'): { $choix[2]='Domicile'; break ; }
        case('2'): { $choix[2]='Nul'; break ; }
        case('3'): { $choix[2]='Extérieur'; break ; }
    }
    $match[2] = 'Hermenault Sérigné - Grosbreuil';
    }
    if(!empty($_POST['m3'])){
    switch($_POST['m3'])
    {
        case('1'): { $choix[3]='Domicile'; break ; }
        case('2'): { $choix[3]='Nul'; break ; }
        case('3'): { $choix[3]='Extérieur'; break ; }
    }
    $match[3] = 'Meilleraie-Tillay - St Aubin la Plaine';
    }
    if(!empty($_POST['m4'])){
    switch($_POST['m4'])
    {
        case('1'): { $choix[4]='Domicile'; break ; }
        case('2'): { $choix[4]='Nul'; break ; }
        case('3'): { $choix[4]='Extérieur'; break ; }
    }
    $match[4] = 'Nieul le Dolent - Les Essarts 2';
    }
    if(!empty($_POST['m5'])){
    switch($_POST['m5'])
    {
        case('1'): { $choix[5]='Domicile'; break ; }
        case('2'): { $choix[5]='Nul'; break ; }
        case('3'): { $choix[5]='Extérieur'; break ; }
    }
    $match[5] = 'Talmont St Hilare - Roche/Y Robretières 2';
    }
    if(!empty($_POST['m6'])){
    switch($_POST['m6'])
    {
        case('1'): { $choix[6]='Domicile'; break ; }
        case('2'): { $choix[6]='Nul'; break ; }
        case('3'): { $choix[6]='Extérieur'; break ; }
    }
    $match[6] = 'Roche/Y Généraudière - Nalliers Foot Espoir';
    }
    $destinataire = 'postmaster@usmeilleraiefoot.fr';
    $sujet = 'Résultats';
    $left = 'Pronostics';
    $right = '';
    $msg =  '';
    $i=1;
    while(isset($match[$i]))
    {
       $i++;
       $msg .= "\r\n".'a choisi "'.$choix[$i].'" pour '.$match[$i] ;
    }
    $var = 'From '. $left.' <'.$right.'>' ."\r\n";
    mail($destinataire, $sujet, $msg, $var);
    ?>
    Et voici ce que je reçois par mail :

    From Pronostics <>

    a choisi "Domicile" pour Hermenault Sérigné - Grosbreuil
    a choisi "Nul" pour Meilleraie-Tillay - St Aubin la Plaine
    a choisi "Domicile" pour Nieul le Dolent - Les Essarts 2
    a choisi "Nul" pour Talmont St Hilare - Roche/Y Robretières 2
    a choisi "Nul" pour Roche/Y Généraudière - Nalliers Foot Espoir
    a choisi "" pour

    Comme vous pouvez le voir, mon match m1 ne s'affiche pas. De plus, je souhaitais que le nom de la personne, et son adresse mail entre parenthèse s'affichent avant "a choisi..". Exemple :

    Prénom NOM (adresse@mail.fr) a choisi "Domicile" pour Hermenault Sérigné - Grosbreuil

    Merci de votre aide,

  12. #32
    Expert éminent sénior

    Avatar de FirePrawn
    Homme Profil pro
    Consultant technique
    Inscrit en
    Mars 2011
    Messages
    3 179
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Consultant technique

    Informations forums :
    Inscription : Mars 2011
    Messages : 3 179
    Points : 19 374
    Points
    19 374
    Par défaut
    C'est que ton $_POST['m1'] doit être vide...

    Pour afficher le nom et le mail, il faut que tu modifies ta variable $msg, tu ne stockes pas ces deux données pour l'instant.
    Avant toute chose : lire le mode d'emploi du forum et ses règles.
    Je ne réponds pas aux questions techniques en MP.

  13. #33
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Août 2011
    Messages
    21
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Août 2011
    Messages : 21
    Points : 5
    Points
    5
    Par défaut Problème PHP
    Tout fonctionne avec ce code :

    Code : 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
     
    <?php
    if(!empty($_POST['m1'])){
    switch($_POST['m1'])
    {
        case('1'): { $choix[1]='Domicile'; break ; }
        case('2'): { $choix[1]='Nul'; break ; }
        case('3'): { $choix[1]='Extérieur'; break ; }
    }
    $match[1] = 'St Florent des Bois - St Prouant/Monsireigne';
    }
    if(!empty($_POST['m2'])){
    switch($_POST['m2'])
    {
        case('1'): { $choix[2]='Domicile'; break ; }
        case('2'): { $choix[2]='Nul'; break ; }
        case('3'): { $choix[2]='Extérieur'; break ; }
    }
    $match[2] = 'Hermenault Sérigné - Grosbreuil';
    }
    if(!empty($_POST['m3'])){
    switch($_POST['m3'])
    {
        case('1'): { $choix[3]='Domicile'; break ; }
        case('2'): { $choix[3]='Nul'; break ; }
        case('3'): { $choix[3]='Extérieur'; break ; }
    }
    $match[3] = 'Meilleraie-Tillay - St Aubin la Plaine';
    }
    if(!empty($_POST['m4'])){
    switch($_POST['m4'])
    {
        case('1'): { $choix[4]='Domicile'; break ; }
        case('2'): { $choix[4]='Nul'; break ; }
        case('3'): { $choix[4]='Extérieur'; break ; }
    }
    $match[4] = 'Nieul le Dolent - Les Essarts 2';
    }
    if(!empty($_POST['m5'])){
    switch($_POST['m5'])
    {
        case('1'): { $choix[5]='Domicile'; break ; }
        case('2'): { $choix[5]='Nul'; break ; }
        case('3'): { $choix[5]='Extérieur'; break ; }
    }
    $match[5] = 'Talmont St Hilare - Roche/Y Robretières 2';
    }
    if(!empty($_POST['m6'])){
    switch($_POST['m6'])
    {
        case('1'): { $choix[6]='Domicile'; break ; }
        case('2'): { $choix[6]='Nul'; break ; }
        case('3'): { $choix[6]='Extérieur'; break ; }
    }
    $match[6] = 'Roche/Y Généraudière - Nalliers Foot Espoir';
    }
    $destinataire = 'postmaster@usmeilleraiefoot.fr';
    $sujet = 'Résultats';
    $left = 'Pronostics';
    $right = '';
    $msg =  '';
    $i=1;
    while(isset($match[$i]))
    {
    $msg .= "\r\n".'a choisi "'.$choix[$i].'" pour '.$match[$i] ;
    $i++; 
    }
    $var = 'From '. $left.' <'.$right.'>' ."\r\n";
    mail($destinataire, $sujet, $msg, $var);
    ?>
    Je reçois donc ce mail :

    From Pronostics <>

    a choisi "Nul" pour St Florent des Bois - St Prouant/Monsireigne
    a choisi "Domicile" pour Hermenault Sérigné - Grosbreuil
    a choisi "Nul" pour Meilleraie-Tillay - St Aubin la Plaine
    a choisi "Extérieur" pour Nieul le Dolent - Les Essarts 2
    a choisi "Nul" pour Talmont St Hilare - Roche/Y Robretières 2
    a choisi "Domicile" pour Roche/Y Généraudière - Nalliers Foot Espoir

    Il ne me manque plus désormais qu'à comprendre comment rajouter avant chaque phrase : Prénom NOM (adresse@mail.fr) a choisi..

Discussions similaires

  1. [MySQL] Problème formulaire PHP/SQL
    Par Maxou73 dans le forum PHP & Base de données
    Réponses: 5
    Dernier message: 27/01/2011, 19h19
  2. Probléme formulaire php
    Par hellsingblack dans le forum Langage
    Réponses: 4
    Dernier message: 06/11/2009, 13h19
  3. Problème Formulaire PHP
    Par mikius dans le forum Langage
    Réponses: 2
    Dernier message: 08/06/2007, 10h00
  4. Problème formulaire PHP sous Apache Windows
    Par nicorico dans le forum Apache
    Réponses: 4
    Dernier message: 29/03/2007, 14h35
  5. Problème Formulaire + popup + page PHP
    Par nesbla dans le forum Général JavaScript
    Réponses: 7
    Dernier message: 25/02/2005, 00h10

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