Où ça la section sondages sur ton site ?
Pourrais-tu m'aider car j'ai placé le code suivant :
<?php
include ( "../jpgraph.php");
include ("../jpgraph_line.php");
// Some data
$ydata = array(11,3, 8,12,5 ,1,9, 13,5,7 );
// Create the graph. These two calls are always required
$graph = new Graph(350, 250,"auto");
$graph->SetScale( "textlin");
// Create the linear plot
$lineplot =new LinePlot($ydata);
$lineplot ->SetColor("#95CDFC");
// Add the plot to the graph
$graph->Add( $lineplot);
// Display the graph
$graph->img->SetImgFormat("png");
$graph->Stroke();
?>
dans un fichier nommé "graphique.php" dans le repertoire /test/ inclu dans le repertoire /jpgraph/ de mon site.
J'ai fait le test qui donne pour vérifier si la libraires GD est installée et ça fonctionne.
Mais là la page graphique.php ainsi que tout les pages d'exemples incluses dans /jpgraph/Examples renvoie rien...une page blanche...
Donc sans message d'erreur je ne sais pas comment y arriver et ou est la faute.
Tu peux m'aider tortue géniale ?
Merci infiniment
Mathieu M-G

[ Lien ]