document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>One Page</title>
  5. </head>
  6. <body>
  7.     <form action="<?php echo $_SERVER[\'PHP_SELF\']; ?>" method="post">
  8.         <p>
  9.             <label>Nama Anda :</label>
  10.             <input type="text" name="nama">
  11.         </p>
  12.         <input type="submit" name="submit">
  13.  
  14.     </form>
  15.  
  16.     <?php
  17.         if (isset($_POST[\'submit\'])) {
  18.             echo "Nama Saya : <b>" .$_POST[\'nama\'] ."</b>";
  19.         }
  20.  
  21.     ?>
  22.  
  23. </body>
  24. </html>
');