Array Functions in PHP
$person['name'] = "Some Name"; // Adds a key element to array $person with the value Some Name unset($person['name']); //Removes the Key element name from the array $person