root/branches/plogger-with-tags/plog-print.php

Revision 373, 338 bytes (checked in by stefan, 3 years ago)

merging changes from trunk into this branch

Line 
1<?php
2
3include("plog-functions.php");
4include("plog-globals.php");
5
6$picture = get_picture_by_id($_GET['id']);
7
8?>
9<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
10<html>
11    <body onload="window.print();">
12        <img src="<?php echo $picture["url"]; ?>" alt="<?php echo $picture["caption"]; ?>" />
13    </body>
14</html>
Note: See TracBrowser for help on using the browser.