[go: up one dir, main page]

Menu

[r1]: / omgm / dev / viewer.php  Maximize  Restore  History

Download this file

21 lines (17 with data), 203 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<style>
body{ background-color: red; }
</style>
</head>
<body>
<?php
$img = $_GET["img"];
if($img){
echo "<img src=\"".$img."\">";
}
else{
echo "<img src=\"out.png\">";
}
?>
</body>