My Array:
<?php
$fruitcolors = array('apple'=>'red', 'lemon'=>'yellow');
?>
I need to know how to echo the value of apple, so it echos "red".
Also I need to know how to add a new value with php code:
$fruitcolors[] = "Pear" => "Green";
etc.
See http://php.net/array for more info.