Advertisement
jargon

"poll.php"

Nov 28th, 2024 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | Gaming | 0 0
  1. <?php
  2. // "poll.php"
  3.  
  4.     $Q = [ ];
  5.     foreach($_GET as $key => $value)
  6.         $Q [ ] = "{$key}={$value}";
  7.        
  8.     $Q = implode("&",$Q);
  9.     if ($Q !== "") $Q = "?" . $Q;
  10.        
  11.     return file_get_contents
  12.     (
  13.         str_replace
  14.         (
  15.             " ",
  16.             "%20",
  17.             "http://{$_SERVER['HTTP_HOST']}/LD3/Linedancer/scripts/php/LD3 Framework/LD3 Poller Main.php"
  18.         ).
  19.         str_replace
  20.         (
  21.             " ",
  22.             "+",
  23.             $Q
  24.         )
  25.        
  26.     );
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement