12-17-2008, 10:19 AM
|
#4 (permalink)
|
|
The Prestige
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
|
Oh and..
PHP Code:
echo $member['$variable'];
is supposed to be
PHP Code:
echo $member[$variable];
Well. Preferably:
PHP Code:
return $member[$variable];
__________________
|
|
|
|