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 :

Undefined index lors d'un update de la base [MySQL]


Sujet :

PHP & Base de données

  1. #1
    Membre à l'essai
    Femme Profil pro
    chef de projet sig
    Inscrit en
    Mars 2015
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 48
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : chef de projet sig
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Mars 2015
    Messages : 19
    Points : 13
    Points
    13
    Par défaut Undefined index lors d'un update de la base
    Bonjour,

    je rencontre un pb lors de la modification d'une base qui de premier regard semble banal mais dont je ne trouve pas la réponse.

    J'ai un document chargesoperationelles_modifier2.php qui affiche les données dans un formulaire pour modification. Et le document modifier3.php est sensé faire l'update. Là j'ai un message d'undex undefined . J'ai testé avec une variable - la surface. Si Dans l'update je donne la valeur exacte ex surface =80, la modification se fait. Si cela reste avec surface = ".$surface." j'ai le fameux message. J'ai testé les isset et les empty ...on dirait qu'il y a rien qui marche. Pourtant j'ai regardé pas mal de docs sur le web. Avez vous une idée?? Merci!


    -----------------chargesoperationelles_modifier2.php---------------------------

    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
    <form method="POST" action="modifier3.php">
     
    <!--action="chargesoperationnelles_modifier2.php?idculture=<?php echo $prevelevementRow[0];?>&idexploitation=<?php echo $idexploitation;?>-->
     
      <input type="hidden" name="idculture" value="<?php echo($idculture) ;?>">
     
      <table border="0" align="center" cellspacing="2" cellpadding="2" style="font-family: Arial;font-size: 10pt; color: #3D4970">
        <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>IDCULTURE </td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="IDCULTURE" value="<?php echo($prevelevementRow['idculture']) ;?>"></td>
        </tr>
     
        <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>CULTURE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="CULTURE" value="<?php echo($prevelevementRow['culture']) ;?>"></td>
        </tr>
        <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>SURFACE</td>
          <td><input type="text"  style="font-family: Arial;font-size: 9pt; color: #3D4970" name="SURFACE" value="<?php echo($prevelevementRow['surface']) ;?>"></td>
        </tr>
        <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>RENDEMENT</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="RENDEMENT" value="<?php echo($row['rendement']) ;?>"></td>
        </tr>
     
     
    	  <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>PRIX VENTE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="PRIXVENTE" value="<?php echo($row['prixvente']) ;?>"></td>
        </tr>
     
    	  <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>AUTRES PRODUITS</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="AUTRESPRODUITS" value="<?php echo($row['autresproduits']) ;?>"></td>
        </tr>
     
    	  <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>SEMENCES ACHETES</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="SEMENCES ACHETES" value="<?php echo($row['semencesachetes']) ;?>"></td>
        </tr>
     
    	  <tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>SEMENCES PRELEVES</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="SEMENCESPRELEVES" value="<?php echo($row['semencespreleves']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>TOTAL SEMENCES</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="TOTALSEMENCES" value="<?php echo($row['semences']) ;?>"></td>
        </tr>
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>N</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="N" value="<?php echo($row['n']) ;?>"></td>
        </tr>
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>P</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="P" value="<?php echo($row['p']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>K</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="K" value="<?php echo($row['k']) ;?>"></td>
        </tr>
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>S</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="S" value="<?php echo($row['s']) ;?>"></td>
        </tr>
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>Mg</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="Mg" value="<?php echo($row['mg']) ;?>"></td>
        </tr>
     
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>FERTILISATION MINERALE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="COUTFERTIMIN" value="<?php echo($row['fertimin']) ;?>"></td>
        </tr>
     
     
    		<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>FERTILISATION ORGANIQUE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="COUTFERTIORG" value="<?php echo($row['fertiorg']) ;?>"></td>
        </tr>
     
    		<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>AMENDEMENT </td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="AMENDEMENT" value="<?php echo($row['amendement']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>DESHERBAGE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="DESHERBAGE" value="<?php echo($row['desherbage']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial;font-size: 10pt; color: #B99867;">
          <td>FONGICIDE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="INSECTICIDE" value="<?php echo($row['fongicide']) ;?>"></td>
        </tr>
     
    		<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>INSECTICIDE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="INSECTICIDE" value="<?php echo($row['insecticide']) ;?>"></td>
        </tr>
     
    		<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>LIMACE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="LIMACE" value="<?php echo($row['limace']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>REGULATEUR</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="REGULATEUR" value="<?php echo($row['regulateur']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>DIVERS</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="DIVERS" value="<?php echo($row['divers']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>ASSURANCE GRELE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="ASSURANCEGRELE" value="<?php echo($row['assurancegrele']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>ASSURANCE RECOLTE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="ASSURANCERECOLTE" value="<?php echo($row['assurancerecolte']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>SECHAGE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="SECHAGE" value="<?php echo($row['sechage']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>IRRIGATION</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="IRRIGATION" value="<?php echo($row['irrigation']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>INDEMNITE GRELE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="INDEMNITEGRELE" value="<?php echo($row['indemnitegrele']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>AIDES PROTEAGINEUX</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="AIDESPROTEAGINEUX" value="<?php echo($row['aidesproteagineux']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>AIDES MAE</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="AIDESMAE" value="<?php echo($row['aidesmae']) ;?>"></td>
        </tr>
     
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
          <td>DPU</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="DPU" value="<?php echo($row['dpu']) ;?>"></td>
        </tr>
    	<tr align="center" style="font-family: Arial bold;font-size: 10pt; color: #B99867;">
         <td>TOTAL AIDES</td>
          <td><input type="text" style="font-family: Arial;font-size: 9pt; color: #3D4970" name="TOTALAIDES" value="<?php echo($row['totalaides']) ;?>"></td>
        </tr>
     
     
     
     
     
     
        <tr align="center">
          <td colspan="2">
    	  <input type="hidden" name="millesime" value="<?php echo $annee ?>"></div>
    	  <input type="hidden" name="idculture" value="<?php echo $idculture ?>"></div>
    	  <input type="hidden" name="idexploitation" value="<?php echo $idexploitation; ?>"> <!-- champ cache -->
    	  <input type="submit" class="submit" name="modifier" value="MODIFIER"></td> 
     
        </tr>
     
       </tr>
     
      </table>
     
    </form>



    ----------------------modifier3.php

    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
    <?php
     
      	$connectionPostgres = pg_connect("host=localhost port=5432 user=postgres password=postgres dbname=margebrute58_test");
    	//Appel au paramétrage du millésime
    	include "configuration.php";
     
    	if(isset($_POST['idexploitation'])){
    	$idexploitation=$_POST['idexploitation'];
        }else{
    	echo "il y a un pb dans le choix de l'exploitation";
        }
     
     
     
     
    		$idculture = $_POST["idculture"] ; 
     
     
    	  $surface="";
    	  $surface=$_POST['surface'];         // je recupère la MODIFICATION du champ modifnomVLAN sélectionée par le bouton radio
          var_dump($_POST['surface']);
     
    	    //Initialization value; Examples
                 //"" When you want to append stuff later
                 //0  When you want to add numbers later
     
    	//if(isset($_POST['surface'])){
    	//$surface=$_POST['surface'];
        //}else{
    	//echo "il y a un pb dans le choix dela surface";
        //}
     
     
     
     
     
    		//if(isset($_POST['surface'])){
    		//$surface= $_POST['surface'];
    		//}
    		if(isset($_POST['rendement'])){
    		$rendement= $_POST['rendement'];
    		}
    		if(isset($_POST['prixvente'])){
    		$prixvente= $_POST['prixvente'];
    		}
    		if(isset($_POST['autresproduits'])){
    		$autresproduits= $_POST['autresproduits'];
    		}
    		if(isset($_POST['idculture'])){
    		$idculture= $_POST['idculture'];
    		}
    		if(isset($_POST['semencesachetes'])){
    		$semencesachetes= $_POST['semencesachetes'];
    		}
    		if(isset($_POST['semencespreleves'])){
    		$semencespreleves= $_POST['semencespreleves'];
    		}
    		if(isset($_POST['totalsemences'])){
    		$totalsemences= $_POST['totalsemences'];
    		}
     
    		if(isset($_POST['n'])){
    		$n= $_POST['n'];
    		}
    		if(isset($_POST['p']))
    		{
    		$p=$_POST['p'];
    		}
    		if(isset($_POST['k']))
    		{
    		$k=$_POST['k'];
    		}
    		if(isset($_POST['s']))
    		{
    		$s=$_POST['s'];
    		}
    		if(isset($_POST['mg']))
    		{
    		$mg=$_POST['mg'];
    		}
    		if(isset($_POST['coutfertiorg'])){
    		$coutfertiorg= $_POST['coutfertiorg'];
    		}
    		if(isset($_POST['coutfertimin'])){
    		$coutfertimin= $_POST['coutfertimin'];
    		}
    		if(isset($_POST['amendement'])){
    		$amendement= $_POST['amendement'];
    		}
     
    		if(isset($_POST['desherbage'])){
    		$desherbage= $_POST['desherbage'];
    		}
     
    		if(isset($_POST['fongicide'])){
    		$fongicide= $_POST['fongicide'];
    		}
    		if(isset($_POST['insecticide'])){
    		$insecticide= $_POST['insecticide'];
    		}
    		if(isset($_POST['limace'])){
    		$limace= $_POST['limace'];
    		}
    		if(isset($_POST['regulateur'])){
    		$regulateur= $_POST['regulateur'];
    		}
     
    		if(isset($_POST['divers'])){
    		$divers= $_POST['divers'];
    		}	
    		if(isset($_POST['assurancegrele'])){
    		$assurancegrele= $_POST['assurancegrele'];
    		}	
    		if(isset($_POST['assurancerecolte'])){
    		$assurancerecolte= $_POST['assurancerecolte'];
    		}	
    		if(isset($_POST['sechage'])){
    		$sechage= $_POST['sechage'];
    		}	
     
    		if(isset($_POST['irrigation'])){
    		$irrigation= $_POST['irrigation'];
    		}	
    		if(isset($_POST['indemnitegrele'])){
    		$indemnitegrele= $_POST['indemnitegrele'];
    		}	
    			if(isset($_POST['aidesproteagineux'])){
    		$aidesproteagineux= $_POST['aidesproteagineux'];
    		}	
     
    		if(isset($_POST['aidesmae'])){
    		$aidesmae= $_POST['aidesmae'];
    		}	
     
    		if(isset($_POST['dpu'])){
    		$dpu= $_POST['dpu'];
    		}	
     
    		if(isset($_POST['totalaides'])){
    		$totalaides= $_POST['totalaides'];
    		}	
     
    	//ini_set("display_errors",0);
    	//error_reporting(0);
     
      //création de la requête SQL:
     
     
    				//Modification
     
     
    // on teste si les variables du formulaire sont déclarées
     
     
    	// lancement de la requête
    	$sql = ("UPDATE cultures SET surface=".$surface." WHERE idexploitation=".$idexploitation." AND millesime = ".$annee." AND idculture = ".$idculture."");
     
    	pg_query($sql) or die('Erreur SQL !'.$sql.'');
     
    	echo "<img src='images/puce_002.gif'>";
    	echo "<span class='validation'>LA DONNEE A BIEN ETE ENREGISTREE.<br><br></span>";
     
    	// on ferme la connexion à la base
    	pg_close();
     
    	// on ferme la connexion à la base
     
     
    	// un petit message permettant de se rendre compte de la modification effectuée
    	if($sql)
    {
    echo("Modifications have been taken into account") ;
    }
    else
    {
    echo("La modification à échouée") ;
    }
     
     
    ?>

  2. #2
    Modératrice
    Avatar de Celira
    Femme Profil pro
    Développeuse PHP/Java
    Inscrit en
    Avril 2007
    Messages
    8 633
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Développeuse PHP/Java
    Secteur : Industrie

    Informations forums :
    Inscription : Avril 2007
    Messages : 8 633
    Points : 16 372
    Points
    16 372
    Par défaut
    Commençons par le commencement : pourrais-tu donner le message d'erreur complet ? et essaye de faire un var_dump complet de $_POST au début de modifier3.php histoire de voir ce qu'il reçoit exactement.
    Modératrice PHP
    Aucun navigateur ne propose d'extension boule-de-cristal : postez votre code et vos messages d'erreurs. (Rappel : "ça ne marche pas" n'est pas un message d'erreur)
    Cherchez un peu avant poser votre question : Cours et Tutoriels PHP - FAQ PHP - PDO une soupe et au lit !.

    Affichez votre code en couleurs : [CODE=php][/CODE] (bouton # de l'éditeur) et [C=php][/C]

  3. #3
    Membre expérimenté
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2015
    Messages
    644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 29
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2015
    Messages : 644
    Points : 1 509
    Points
    1 509
    Par défaut
    Bonjour,

    J'ignore si la sensibilité des caractères y joue, mais tes attributs name sont en majuscules, et toi tu récupères des minuscules.
    Un fait toujours plaisir et encourage à l'entraide. Un n'est pas à négliger, pensez aux autres !

    Que la force soit avec Developpez.net
    Je ne suis pas un crack en informatique, loin de là, mais il n'y a pas que les mécaniciens qui sachent conduire une voiture

  4. #4
    Membre à l'essai
    Femme Profil pro
    chef de projet sig
    Inscrit en
    Mars 2015
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 48
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : chef de projet sig
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Mars 2015
    Messages : 19
    Points : 13
    Points
    13
    Par défaut
    Effectivement c'était lié à la sensibilité des caractères majuscules/ minuscules. Bien vu et grand merci!

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

Discussions similaires

  1. Réponses: 2
    Dernier message: 05/05/2007, 10h05
  2. erreur lors d'un update d'une base de données
    Par tibtibby dans le forum ASP
    Réponses: 1
    Dernier message: 09/06/2006, 14h30
  3. deadlock lors d'un update
    Par jacques trepp dans le forum PostgreSQL
    Réponses: 2
    Dernier message: 14/06/2005, 16h46
  4. [ACCESS] [JET] [ADO] Erreur 3000 lors d'un update
    Par Benjamin GAGNEUX dans le forum Bases de données
    Réponses: 5
    Dernier message: 26/08/2004, 21h16
  5. Problème lors d'un Update sur une date
    Par Nany dans le forum ASP
    Réponses: 3
    Dernier message: 19/05/2004, 22h37

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