read_response.php 765B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. //#########################################################
  3. // Part of project php-IRC-js
  4. //
  5. // connect.php - connect to server and send commands
  6. //
  7. // Author: Mario Chorvath - Bedna
  8. // Start 2016
  9. //
  10. // Licence GNU General Public License
  11. // Version 2
  12. // http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
  13. //#########################################################
  14. // Define viarable
  15. $response = "";
  16. // Open file for read responses
  17. if ($handle = @fopen ("server_response.txt", "r")) {
  18. // Reads lines from file
  19. while ($line = fgets ($handle)) {
  20. $response .= $line;
  21. }
  22. // Close file
  23. fclose ($handle);
  24. // Send lines back to JavaScript
  25. echo $response;
  26. flush ();
  27. }
  28. // If error
  29. else {
  30. echo "ERROR open file 'server_response.txt'";
  31. flush ();
  32. }
  33. ?>