Hi,
I thought this code would work, but its not parsing over the values ??
The URL is constructed as:
http://domain.com/file.php?slice1=3&slice2=5&slice3=10
The PHP is as follows:
<?php
$slice1 = $_GET["slice1"];
$slice2 = $_GET["slice2"];
$slice3 = $_GET["slice3"];
$data=array( "January"=>$slice1, "February"=>$slice2, "March"=>$slice3 ); //values
but this does not seem to be populating ?? Where am I going wrong ?
(this array is then fed into a graph class)
Thanks in advance,