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

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