$left = isset($_GET['left']) ? (int)$_GET['left'] : 0;
$right = isset($_GET['right']) ? (int)$_GET['right'] : 1;
$top = isset($_GET['top']) ? (int)$_GET['top'] : 0;
$bottom = isset($_GET['bottom']) ? (int)$_GET['bottom'] : 1;
$zoom = isset($_GET['zoom']) ? (int)$_GET['zoom'] : 4;
$scale = isset($_GET['scale']) ? (int)$_GET['scale'] : 256;
$tileset = isset($_GET['tileset']) ? preg_replace("/[^-0-9A-Za-z_]/", "_", $_GET['tileset']) : "Metroid-Map";
?>
Map
(link)
(src)
for( $y = $top; $y <= $bottom; $y++ ) { ?>
for( $x = $left; $x <= $right; $x++ ) { ?>
 |
} ?>
} ?>