"key" => "value"
Where key is the first item and value is the contents of that related item.
Example 1:
<?php
$car_info = array ("Colour" => "Green", "Car" => "Ford");
while (list ($key, $value) = each ($car_info))
{
echo "$key: $value <br>";
}