I've programmatically created an array named $output whose print_r() output looks like this:
Array ( [0] => Array ( [campaign] => 1 [campaign_name] => IJLC Mailing List [count] => 5 [0] => [Clicks] => 0 ) [1] => Array ( [campaign] => 1 [campaign_name] => IJLC Mailing List [count] => 5 [0] => [Clicks] => 0 ) )
So, why does echo"$output[1][1]" produce: "Array[1]" instead of "IJLC Mailing List"?
I must have a fundamental misunderstanding of how PHP arrays work. Thanks. --Jeff