HB/jpgraph/Examples/show-image.php

11 lines
317 B
PHP
Raw Normal View History

2008-11-08 11:00:00 +00:00
<?php $target = urldecode($_GET['target']); ?>
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Image <?php echo basename($target); ?></title>
</head>
<body>
<img src="<?php echo basename($target); ?>" border=0 alt="<?php echo basename($target); ?>" align="left">
</body>
</html>