I don't... know? lol. Arrays have always confused the heck out of me.
I have this query...
$sql = 'SELECT nickname, nicknameid FROM table_nicknames WHERE userid = id';
What I want to know is if it's possible to append the data I get from this query and put it into the existing array.
So it'd be something like this...
$status = array(
'here' => 'Here',
'busy' => 'Busy',
'away' => 'Away',
'brb' => 'BRB',
'nicknameid1' => 'nickname1',
'nicknameid2' => 'nickname2',
);
I'm just not even sure if such a thing is possible.