<?php
require_once("tags.php");
if (file_exists("$wdptagfile"))
{ 
// content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_line.php');
//((tags (1582)),(tags (1583),tags (1584),(tags (1585),tags (1586),tags (1587),tags (1588));

// Some (random) data
//$ydata = array(11,3,8,12,5,1,9,13,5,7);
//$ydata = array (tags (1583),tags (1584),(tags (1585),tags (1586),tags (1587),tags (1588));


//print ($ydata);
$ydata = array(); 
for ($i = 1581; $i <= 1588; $i++) 
{ 
$data = tags($i,stripe,ret); 
array_push($ydata, $data); 
}  
print_r($ydata); 
 
// Size of the overall graph
$width=350;
$height=250;
 
// Create the graph and set a scale.
// These two calls are always required
$graph = new Graph($width,$height);
$graph->SetScale('intlin');
 
// Create the linear plot
$lineplot=new LinePlot($ydata);
 
// Add the plot to the graph
$graph->Add($lineplot);
 
// Display the graph
//$graph->Stroke();

 
} else {

echo "<html>";
echo "<head>";
echo "<META HTTP-EQUIV=\"Refresh\" CONTENT=\"2\">";
echo "<body>";
echo "Refreshing data! If page does not reload, hit refresh in your browser, or <a href = \"";
echo $_SERVER["PHP_SELF"];
echo "\">click here</a>.";
}
?>
