Hi,
I am making graphs in an image form using php.
The data is not comming from a database but rather a webpage that has been pulled apart and analized for the data that i want.
The problem is that i need to get the information to the php doc that maks the image.
I was using something like
<img src="image.php?name0=Sample1&data0=100&name0=Sample1&data0=100"> to get the data accross then i was using the following code to get the info into an array. This is a damn bad method i know but i cant think of any other way to do it(and this way doesnt work for more then 1 set of results anyway)
$arraycount=count($GET);
for($d=0; $d < $arraycount;$d=$d+2😉{
$graphname[$d]=$GET['name'.$d];
$graphdata[$d]=$_GET['data'.$d];
}
Can anyone help me please?