Allen,
I tried the serialize function as suggested and I can't get the array to pass. Here's what's going on now:
In "choose.php", an array is passed called $invdate to "display.php". Via some print commands in "display.php", I can print all of the values in $invdate.
In "display.php", I run the following:
<?php
$data = serialize($invdate);
?>
<IMG SRC="chart.php?passvar=<?php echo $data; ?>">
In "chart.php", I run:
$invdatearray = unserialize($passvar);
and then the script continues. This should put the original array into $invdatearray...correct????
What I get is a broken image. If I enter $invdatearray[0] = "2002-01-08";
$invdatearray[1] = "2002-01-14";
and the let the script continue, I get the image.
Do you see any problems with this that I can't?
Thanks again for the help and the introduction to a new function.
-Rob