If all files in the folder are accessible, which is what I believe since you have no conditions for excluding files in your loop, then it's probably better to just do something like this:
<?php
$path = 'html/';
$view = str_replace(array('\\', '/'), '', $_GET['view']);
include $path . ($view...