document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.     echo "<ul>";
  3.     $keyArray = array_keys($_GET);
  4.     foreach ($keyArray as &$key) {
  5.         echo "<li>You have defined the variable: $key</li>";
  6.     }
  7.     echo "</ul>";
  8. ?>
');