is it possible to register an array in a session?
ie: $fruit=array("apple","pear");
session_register(fruit);
i'm trying and it doesn't seem to be working.
Hi,
have a look here: http://www.php.net/manual/en/function.serialize.php
firemouse2001