Forum Moderators: coopster
as an example lets say I have a table that shows:
id ¦ name ¦ nickname
what I would like to do is have my array as follows:
$name_ar = array(
'name1' => 'nickname1',
'name2' => 'nickname2',
'name3' => 'nickname3',
/* and on and on */
);
Arrays are not my favourite things, some help?