i want to make an array out of the basic rss info so items can be sorted. can an associative array have one key but multiple values?
i guess the only way is a multidimensional array?
snx
a key cant have multiple values, however a key can point to another array like this:
$a = array( 'mykey' => array(1,2,3,4) );
echo $a['mykey'][2]; //shows 3
hope that helped