1 okt 2008 kl. 12.31 skrev Alain Roger:
...
later on i try to use the content of this array, bt without success.
Here is what i do:
$bci = array($_SESSION['bc']);
array_push($bci,$_SESSION['bc']);
foreach($bci as $key=>$value)
{
echo "bci : ".$bci[$key]['name'];
echo "<br/>";
}
how can i get the 'name' value for each row in this session stored
array ?
thx.
...
The function you need to look into is called "serialize".
http://www.php.net/manual/en/function.serialize.php
//frank
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php