1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php include('_init.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include('_head.php'); ?> <link href="css/style_k.css?v=<?=time();?>" type="text/css" rel="stylesheet"> </head>
<body> <?php include('_header.php') ?>
<?php include('_dialog.php') ?>
<div class="ProfileContent"> <div class="Profilecontainer"> <div class="row"> <div class="col-md-12 padding0"> <!--<iframe src="<?/*=$_GET["url"]*/?>" style="width: 100%;" frameborder="0"></iframe>--> <img src="<?=$_GET["url"]?>" style="width: 100%;"> </div> </div> </div> </div> <? include('_footer.php') ?>
<script type="text/javascript"> $(function () { //console.log($( window ).height()); //$("iframe").css("height", $( window ).height()+"px"); }); </script> </body> </html>
|