|
Posted by thib΄ on 01/14/08 01:18
Peter Pei wrote:
> on point 1, you are getting closer
Hum.. I did explain exactly what the OP was asking. If you want plain
example of what I just said, here it is:
<?php
session_start();
$_SESSION['some_array'] = array('why', 'wouldn\'t', 'this', 'work?');
echo '<pre>' . print_r($_SESSION, true) . '</pre>';
?>
-----
Array
(
[some_array] => Array
(
[0] => why
[1] => wouldn't
[2] => this
[3] => work?
)
)
String key, thus no notice. Is something wrong with that?
*scratches his head*
-thibΒ΄
Navigation:
[Reply to this message]
|