Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. /* Tutorial Melindungi Form Dengan Key / Token ( Solusi Captcha ) - By gregetart.blogspot.com  */
  3. session_start();
  4. include('token.php');
  5. ?>
  6. <form method="POST" action="action.php">
  7. <p>Melindungi Form Dengan Key / Token ( Solusi Captcha ) By <a href="http://gregetart.blogspot.com">Greget Art</a></p>
  8. <input type="hidden" value="<?php echo $_SESSION['token']; ?>" /><button>Submit</button>
  9. </form>