Hi,
I need your help!
I have this script
I need to display on the page; Pippo
the content of the variable $first_name;
and write:
echo $member[first_name];
but doesn't work
can you help me?
Thanks
Gerry
I need your help!
I have this script
Code:
<?php echo '<pre>' . print_r($_SESSION, TRUE) . '</pre>'; ?>
and I see:
Array
(
[Zid] => 1
[member] => Array
(
[id] => 3
[group_id] => 1
[first_name] => Pippo
[last_name] => muse
[email] => pippo@pippo.com
[phone] => 001111111
[website] => www.pippo.com
)
)
the content of the variable $first_name;
and write:
echo $member[first_name];
but doesn't work
can you help me?
Thanks
Gerry
Comment