I'm reading Larry Ullmans beginners book on PHP. in the chapter about arrays, he started using this symbol "=>" when dealing with arrays, but there is no explanation why, and it is not an operator nor is is listed in the index anywhere else.
Here is the sample script:
[pre]
$soups = array (
'Monday' => 'Clam Chowder',
'Tuesday' =>'Vegetarian',
[/pre]
etc., etc.....
is this just the way arrays are set up, using the "=>" symbol to indicate it is an element of the array?