Posted by Jerry Stuckle on 11/18/05 05:46
mtjarrett wrote:
> thanks, but i've tried that:
>
>>>echo $_SESSION['info'][0] . "<br/>";
>>>echo $_SESSION['info'][1] . "<br/>";
>
>
> it seems that though $_SESSION['info'] is a set it only contains the
> word "Array". any ideas on that?
>
> thanks again.
>
That's what you get if you just echo $_SESSION because it is an array.
Try
print_r($_SESSION);
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|