Re: One Big Code!
$_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false;
if(!in_array($_GET['action'], array('', 'this', 'is', 'boring'))) {
echo "You're supposed to pick an existing action -.-";
exit;
}