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

Bibliothèques et frameworks PHP Discussion :

[JpGraph] L'image ne peut pas être affichée car elle contient des erreurs


Sujet :

Bibliothèques et frameworks PHP

  1. #1
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut [JpGraph] L'image ne peut pas être affichée car elle contient des erreurs
    Bonjour à vous!
    Je suis en train de suivre le tutoriel suivant :
    http://eric-pommereau.developpez.com...aphiques#LII-D

    L'objectif de ce tutoriel étant d'afficher, grâce à jpgraph, un histogramme. Au lieu de le suivre à la lettre j'ai tenté de faire quelques expérimentation personnelles. Voici mon 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
     
     
    <?php
     
    			@include ("./jpgraph/src/jpgraph.php");
    			@include ("./jpgraph/src/jpgraph_bar.php");
     
    			$tableauPersonne = array("Pascal", "Régis", "Mathieu", "Anthony");
    			$tableauNombreCD = array(55, 120, 12, 100);
     
    			// Construction du conteneur
    			// Spécification largeur et hauteur
    			$graph = new Graph(400,250);
     
    			// Réprésentation linéaire
    			$graph->SetScale("textlin");
     
    			// Ajouter une ombre au conteneur
    			$graph->SetShadow();
     
    			// Fixer les marges
    			$graph->img->SetMargin(40,30,25,40);
     
    			// Création du graphique histogramme
    			$bplot = new BarPlot($tableauNombreCD);
     
    			// Spécification des couleurs des barres
    			$bplot->SetFillColor(array('red', 'green', 'blue', 'orange'));
     
    			// Une ombre pour chaque barre
    			$bplot->SetShadow();
     
    			// Afficher les valeurs pour chaque barre
    			$bplot->value->Show();
    			// Fixer l'aspect de la police
    			$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
    			// Modifier le rendu de chaque valeur
    			$bplot->value->SetFormat('%d ventes');
     
    			// Ajouter les barres au conteneur
    			$graph->Add($bplot);
     
    			// Le titre
    			$graph->title->Set("Graphique 'HISTOGRAMME' : nombre de CD par personnes");
    			$graph->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Titre pour l'axe horizontal(axe x) et vertical (axe y)
    			$graph->xaxis->title->Set("Personnes");
    			$graph->yaxis->title->Set("Nombre de CD");
     
    			$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
    			$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Légende pour l'axe horizontal
    			$graph->xaxis->SetTickLabels($tableauPersonne);
     
    			// Afficher le graphique
    			$graph->Stroke();
    		?>
    Lorsque je teste, voici l'erreur : L'image http://localhost/TEST/ ne peut pas être affiché car elle contient des erreurs.
    En mettant $graph->Stroke(); en commentaires, je n'ai plus d'erreur. Avez vous des idées ?

    Merci =)

  2. #2
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Bonjour,
    Quand je copie colle ton code et remplace mes chemins pour accéder aux fichiers jpgraph ca marche très bien... Vérifie tes chemins:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    @include ("./jpgraph/src/jpgraph.php");
    //remplace par
    @include ("../jpgraph/src/jpgraph.php");
    //il te manque un point dans le chemin relatif
    Ensuite tu travaille avec quelle version de jpghraph en local ou directement sur un serveur ?
    Vérifier qu'il n'y a aucun code html avant et après tes balises php et
    Enlève aussi tous les espaces saut de ligne avant et après les balises ,<?php doit être ton premier caractère et ?> le dernier,
    ensuite ca devrait rouler

  3. #3
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    Bonjour clément et merci pour ta réponse,
    Tu me dis que s'il y a du code html avant cela ne peut pas fonctionner ?
    Voici dans ce cas mon code complet (j'aurais du faire ca depuis le début^^)
    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
    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
     
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
       <head>
           <title>Mon super site</title>
           <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    	   <link href="design.css" rel="stylesheet" type="text/css" media="screen, handheld, tv, projection" />
       </head>
     
       <body>
     
    		<?php
     
    			$tableauPersonne = array();
    			$tableauNombreCD = array();
    			$tableauAge = array();
     
    			try
    			{
     
    				$pdo_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION;
    				$bdd = new PDO('mysql:host=localhost;dbname=maBase', 'root', '', $pdo_options);
     
     
    				$reponse = $bdd->query('SELECT * FROM personne');
     
    				// On affiche chaque entrée une à une
    				while ($donnees = $reponse->fetch())
    				{
    					$tableauPersonne[] = $donnees['nom'];
    					$tableauAge[] = $donnees['age'];
    					$tableauNombreCD[] = $donnees['nombre_cd'];
    				}
    					$reponse->closeCursor(); // Termine le traitement de la requête
    			}
    			catch (Exception $e)
    			{
    					die('Erreur : ' . $e->getMessage());
    			}
     
    		?>
    		<table id="table">
    			<caption class = "caption">Valeurs à mettre dans le graphique</caption>
     
    			<tr id="id">
    				<td>Nom</td>
    				<td>Age</td>
    				<td>nombre de CD</td>
    			</tr>
     
    			<tr class = "personne">
    				<td><?php print_r($tableauPersonne[0]); ?></td>
    				<td><?php print_r($tableauAge[0]); ?></td>
    				<td><?php print_r($tableauNombreCD[0]); ?></td>
    			</tr>
     
    			<tr class = "personne">
    				<td><?php print_r($tableauPersonne[1]); ?></td>
    				<td><?php print_r($tableauAge[1]); ?></td>
    				<td><?php print_r($tableauNombreCD[1]); ?></td>
    			</tr>
     
    			<tr class = "personne">
    				<td><?php print_r($tableauPersonne[2]); ?></td>
    				<td><?php print_r($tableauAge[2]); ?></td>
    				<td><?php print_r($tableauNombreCD[2]); ?></td>
    			</tr>
     
    			<tr class = "personne">
    				<td><?php print_r($tableauPersonne[3]); ?></td>
    				<td><?php print_r($tableauAge[3]); ?></td>
    				<td><?php print_r($tableauNombreCD[3]); ?></td>
    			</tr>
     
    		</table>
     
     
     
    		<?php	
     
    			@include ("./jpgraph/src/jpgraph.php");
    			@include ("./jpgraph/src/jpgraph_bar.php");
     
    			// Construction du conteneur
    			// Spécification largeur et hauteur
    			$graph = new Graph(400,250);
     
    			// Réprésentation linéaire
    			$graph->SetScale("textlin");
     
    			// Ajouter une ombre au conteneur
    			//$graph->SetShadow();
     
    			// Fixer les marges
    			$graph->img->SetMargin(40,30,25,40);
     
    			// Création du graphique histogramme
    			$bplot = new BarPlot($tableauNombreCD);
     
    			// Spécification des couleurs des barres
    			$bplot->SetFillColor(array('red', 'green', 'blue', 'orange'));
     
    			// Une ombre pour chaque barre
    			//$bplot->SetShadow();
     
    			// Afficher les valeurs pour chaque barre
    			$bplot->value->Show();
    			// Fixer l'aspect de la police
    			$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
    			// Modifier le rendu de chaque valeur
    			$bplot->value->SetFormat('%d personne');
     
    			// Ajouter les barres au conteneur
    			$graph->Add($bplot);
     
    			// Le titre
    			$graph->title->Set("Graphique 'HISTOGRAMME' : nombre de CD par personnes");
    			$graph->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Titre pour l'axe horizontal(axe x) et vertical (axe y)
    			$graph->xaxis->title->Set("Personnes");
    			$graph->yaxis->title->Set("Nombre de CD");
     
    			$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
    			$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Légende pour l'axe horizontal
    			$graph->xaxis->SetTickLabels($tableauPersonne);
     
    			// Afficher le graphique
    			$graph->Stroke();
    		?>
     
        </body>
    </html>
    Comme tu peux le constater, il y a du code html avant et après. La solution serait de mettre mon code php dans un autre fichier et faire un appel dans le fichier html ?

    Merci.

  4. #4
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Essaye d'abord de créer un fichier php juste avec tes balises sans espaces ni rien avant ni apres... et cela devrait marcher

  5. #5
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    toujours la même erreur. Et l'adresse des include est bonne également

  6. #6
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Tu as bien enlever tous les espaces ou retour a la ligne?
    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
    <?php
     
    			Include('../jpgraph/src/jpgraph.php');
    			Include ('../jpgraph/src/jpgraph_bar.php');
     
    			$tableauPersonne = array("Pascal", "Régis", "Mathieu", "Anthony");
    			$tableauNombreCD = array(55, 120, 12, 100);
     
    			// Construction du conteneur
    			// Spécification largeur et hauteur
    			$graph = new Graph(400,250);
     
    			// Réprésentation linéaire
    			$graph->SetScale("textlin");
     
    			// Ajouter une ombre au conteneur
    			$graph->SetShadow();
     
    			// Fixer les marges
    			$graph->img->SetMargin(40,30,25,40);
     
    			// Création du graphique histogramme
    			$bplot = new BarPlot($tableauNombreCD);
     
    			// Spécification des couleurs des barres
    			$bplot->SetFillColor(array('red', 'green', 'blue', 'orange'));
     
    			// Une ombre pour chaque barre
    			$bplot->SetShadow();
     
    			// Afficher les valeurs pour chaque barre
    			$bplot->value->Show();
    			// Fixer l'aspect de la police
    			$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
    			// Modifier le rendu de chaque valeur
    			$bplot->value->SetFormat('%d ventes');
     
    			// Ajouter les barres au conteneur
    			$graph->Add($bplot);
     
    			// Le titre
    			$graph->title->Set("Graphique 'HISTOGRAMME' : nombre de CD par personnes");
    			$graph->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Titre pour l'axe horizontal(axe x) et vertical (axe y)
    			$graph->xaxis->title->Set("Personnes");
    			$graph->yaxis->title->Set("Nombre de CD");
     
    			$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
    			$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
     
    			// Légende pour l'axe horizontal
    			$graph->xaxis->SetTickLabels($tableauPersonne);
     
    			// Afficher le graphique
    			$graph->Stroke();
    		?>
    Copie juste et colle au début du fichier sans espace sans de saut de ligne etc...

  7. #7
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    Création d'un nouveau document php, avec le code suivant. Avec ou sans espace ca donne la même chose

    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
     
    <?php	
     
    	@include ("./jpgraph/src/jpgraph.php");
    	@include ("./jpgraph/src/jpgraph_bar.php");
     
    	$tableauPersonne = array("Régis", "Anthony", "Mathieu", "Pascal");
    	$tableauNombreCD = array(10, 25, 2, 55);
     
    	// Construction du conteneur
    	// Spécification largeur et hauteur
    	$graph = new Graph(400,250);
     
    	// Réprésentation linéaire
    	$graph->SetScale("textlin");
     
    	// Ajouter une ombre au conteneur
    	//$graph->SetShadow();
     
    	// Fixer les marges
    	$graph->img->SetMargin(40,30,25,40);
     
    	// Création du graphique histogramme
    	$bplot = new BarPlot($tableauNombreCD);
     
    	// Spécification des couleurs des barres
    	$bplot->SetFillColor(array('red', 'green', 'blue', 'orange'));
     
    	// Une ombre pour chaque barre
    	//$bplot->SetShadow();
     
    	// Afficher les valeurs pour chaque barre
    	$bplot->value->Show();
    	// Fixer l'aspect de la police
    	$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
    	// Modifier le rendu de chaque valeur
    	$bplot->value->SetFormat('%d personne');
     
    	// Ajouter les barres au conteneur
    	$graph->Add($bplot);
     
    	// Le titre
    	$graph->title->Set("Graphique 'HISTOGRAMME' : nombre de CD par personnes");
    	$graph->title->SetFont(FF_FONT1,FS_BOLD);
     
    	// Titre pour l'axe horizontal(axe x) et vertical (axe y)
    	$graph->xaxis->title->Set("Personnes");
    	$graph->yaxis->title->Set("Nombre de CD");
     
    	$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
    	$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
     
    	// Légende pour l'axe horizontal
    	$graph->xaxis->SetTickLabels($tableauPersonne);
     
    	// Afficher le graphique
    	$graph->Stroke();
    ?>

  8. #8
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    Je pense que mon problème ne vient pas du code. J'ai tenté d'ouvrir les exemples, cela n'a pas fonctionné avec la même erreur. Je me suis posé alors la question de la qualité de l'installation. Vu sur développez, l'installation était bonne.
    Avec ce site http://nikhun.com/?p=362 toujours pas de solution..

    Des conseils pour valider l'installation de jpgraph ?

    Cdt.

  9. #9
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    TU rajoutes les sauts de ligne dans le message pour faire plus clair ou ton fichier commence par un saut de ligne et se finit par deux saut de ligne

  10. #10
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Ton jpgraph est bien installé car sinon il te dirait que chaque fonction propre à la bibliothèque jpgraph n'existerait pas

  11. #11
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    c'est pour faire plus clair

  12. #12
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    As tu essayé des exemples du site jpgraph?
    QUelv ersion de jpgraph utilises tu?
    EN local ou pas?

  13. #13
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    Sur les exemples, j'ai la même erreur.
    Je peux déterminer la version ou ? Dans le fichier Version.txt ? Il me donne ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Revision: r1089, Exported: 2009-01-31 15:55
    Patchlevel: 1 : Correction of font path typo.
    Je suis en local (j'utilise wamp)
    PHP 5.3

  14. #14
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Ben télécharge une version ur jpgraph remplace ton dossier jpgraph par celui ci et ressaye moi ton fichier marche sur les deux dernières versions

  15. #15
    Membre habitué
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    323
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 323
    Points : 128
    Points
    128
    Par défaut
    C'était bien une histoire de version.

    Merci pour ta réponse et ta patience

    =)

    Problème résolu.

  16. #16
    Membre du Club
    Homme Profil pro
    Technicien SIG
    Inscrit en
    Janvier 2011
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Technicien SIG
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Janvier 2011
    Messages : 37
    Points : 49
    Points
    49
    Par défaut
    Ravi de t'avoir aidé,
    Bonne journée

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

Discussions similaires

  1. [GD] L'image ne peut être affichée car elle contient des erreurs
    Par Denis Placé dans le forum Bibliothèques et frameworks
    Réponses: 18
    Dernier message: 15/01/2018, 13h23
  2. Réponses: 9
    Dernier message: 19/05/2015, 19h41
  3. Réponses: 13
    Dernier message: 22/09/2013, 23h26
  4. [GD] L'image ne peut être affichée car elle contient des erreurs
    Par The Free Man dans le forum Bibliothèques et frameworks
    Réponses: 1
    Dernier message: 29/07/2009, 18h51
  5. Image ne peut être affichée car elle contient des erreurs !
    Par van-bom dans le forum Hébergement
    Réponses: 1
    Dernier message: 26/05/2008, 11h00

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