You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
331 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: yigido
  5. * Date: 6/23/18
  6. * Time: 5:19 PM
  7. */
  8. $id = $_POST["id"];
  9. $value = $_POST["value"];
  10. $file_loc = "../content/" . $value . "/" . $id . ".json";
  11. $myfile = fopen($file_loc, "r") or die("Unable to open file!");
  12. $content = fread($myfile,filesize($file_loc));
  13. echo $content;
  14. ?>