Static website for local motocross track (circa Jun 2004)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

19 lines
552 B

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Zoomed View (Click to close)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body { margin: 0px; padding: 0px; }
</style>
</head>
<body onClick="javascript:window.close()">
<?php
$photo = $_GET['photo'];
$size = getimagesize("$photo");
echo "<img src=\"$photo\" $size[3] border=\"0\" alt=\"Zoomed Picture\" title=\"Click to close\">";
?>
</body>
</html>