I am setting this array manually:
$schools = array( 'Indiana University'=>array( 'initials'=>'IU', 'color'=>'red', 'directory'=>'indiana' ) ); But it won't echo "IU" when I use:
echo $schools[0][0]; It does show correctly when I do:
print_r($schools); I'm sure I'm messing up something dumb, but I have no idea what and I've been staring at it for hours. This array is actually part of a larger array with multiple universities, but when I trim it down to just this, it doesn't work.