aboutsummaryrefslogtreecommitdiffhomepage
path: root/html/smallpage.php
blob: ef165c6d08ba33b2785c2b78a63ea71bd9ec245e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
  require('functions.php3');
  small_header($title);
  if (substr($file,0,1)=="." or 
      substr($file,0,1)=="/" or
      substr($file,0,1)=="~") {
     print "Sorry, can't show you that file!\n"; 
  } else {
    include($file);
  }
  footer(); 
?>