Advertisement
andraantariksa

form

Dec 23rd, 2014
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  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>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement