Fourth pass at adding key files

This commit is contained in:
dsainty
2024-06-17 22:30:36 +10:00
parent 08eb7b7da2
commit 67ccdbcc34
132 changed files with 11416 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<?php
$img = '';
if (isset($_GET['img'])) { $img = $_GET['img']; }
?>
<html>
<head>
<title>:: click on the picture to close window ::</title>
</head>
<body bgcolor=#000000 marginheight=4 marginwidth=15 leftmargin=15 topmargin=4>
<div align=center>
<table cellpadding=3 cellspacing=3 border=0 width="100">
<tr>
<td bgcolor="#eeeeee">
<a href="javascript:window.close();">
<img border=0 src="<?php echo $img ?>">
</a>
</td>
</tr>
</table>
</div>
</body>
</html>