Thanks,
I tried this but now my problem is that I can't seem to get it to display the contents of the session array. Since I can't display it I can't tell if this is working. When I try to use a foreach statement it doesn't like it. I used the following code:
foreach ($_SESSION['array'][] as $value)
{
echo $value;
}
and it gives me an error message about the foreach line. How do I go about calling and displaying all of the items in the array? I need some kind of loop but I just don't seem to be able to walk through the array. Also, is there a function to tell me how many values are in the array?
thanks