aboutsummaryrefslogtreecommitdiffhomepage
path: root/html/fileshow.phtml
blob: 5560a9119f5aeff4afc3daf832618cee30df8fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
  require('functions.php3');
  $filename=$HTTP_GET_VARS["file"];
  $title=$HTTP_GET_VARS["title"];
  if ($title=="") { $title = $filename; };
  small_header($title);
  print "<pre>\n";
  markup_plain_text($filename);
  print "</pre>\n";
  print "<hr>";
  click_to_go_back();
  footer();
?>