1. <?php
  2. include 'config.php';
  3.  
  4. if(isset($_GET['id']) && isset($_GET['name'])) {
  5.     $path = $base_path . stripShit($_GET['id']) . "/" . stripShit($_GET['name']);
  6.    
  7.     echo file_get_contents($path);
  8. }
  9.  
  10. ?>