document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.     if(isset($_GET[\'nama\']) AND isset($_GET[\'email\']))
  3.     {
  4.         echo $_GET[\'nama\'];
  5.     }
  6.     echo "<br/>";
  7.     if(isset($_GET[\'username\']))
  8.     {
  9.         echo $_GET[\'username\'];
  10.     }
  11.     echo "<br/>";
  12.     if(isset($_GET[\'password\']))
  13.     {
  14.         echo $_GET[\'password\'];
  15.     }
  16.     echo "<br/>";
  17.     if(isset($_GET[\'email\']))
  18.     {
  19.         echo $_GET[\'email\'];
  20.     }
  21. ?>
');