get.php 224 B

123456789
  1. <?php
  2. require_once "../path.php";
  3. $filename = _DIR_USERS_GUIDE_."/en/".$_GET["id"].".md";
  4. $output["data"] = file_get_contents($filename) ;
  5. $output["id"] =$_GET["id"];
  6. echo json_encode($output,JSON_UNESCAPED_UNICODE);
  7. ?>