index.php 530 Bytes
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<?php foreach ($this->view->list as $k => $v):?>
<iframe style="display:none;" src="javascript:void(0);" id="iframe<?php echo $k ;?>"></iframe>
<script type="text/javascript">
document.getElementById('iframe<?php echo $k ;?>').src="<?php echo $v ;?>";
</script>
<?php endforeach;?>
</body>
</html>