save.php 448 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * LInE - Laboratory of Informatics in Education
  4. * http://line.ime.usp.br
  5. *
  6. * PHP script to simulate the server side (to register the iLM content), here the iVProgH content.
  7. * Actually, this code only list the content sent by the iLM/iVProgH.
  8. *
  9. */
  10. session_start();
  11. if (isset($_POST["src"])){
  12. $src = $_POST["src"];
  13. $id = time();
  14. $_SESSION["src_".$id] = $src;
  15. print $id;
  16. exit;
  17. }
  18. print "ERROR";
  19. ?>