What is the correct method to access form data in PHP, especially when using a select element with multiple options?

When accessing form data in PHP, especially when dealing with a select element that allows for multiple options to be selected, the correct method is to use the `$_POST` superglobal array. When a select element allows for multiple options to be selected, the form data will be sent as an array. To access this array in PHP, you need to use the `name` attribute of the select element followed by `[]` to indicate that it is an array.

// HTML form
<form method="post">
    <select name="colors[]" multiple>
        <option value="red">Red</option>
        <option value="blue">Blue</option>
        <option value="green">Green</option>
    </select>
    <input type="submit" value="Submit">
</form>

// PHP code to access form data
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $selectedColors = $_POST['colors'];
    foreach ($selectedColors as $color) {
        echo $color . "<br>";
    }
}