PHP Switch June 24th, 2014

Switch is an abbreviated version of if, else if, etc…

<?php
    switch($_POST['color']) {
        case 'white':
        case 'black':
            $clean['color'] = $_POST['color'];
            break;
    }
?>