Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Eiffel 0.61 KB | None | 0 0
  1. <?php
  2.     $rand = rand(10000, 99999);
  3.     $_SESSION['random_key'] = $rand;
  4.    
  5. if ($_POST['confirm'] != '') {
  6.     exit("Der Sicherheitscode ".$_POST['confirm']." wurde &uuml;bermittelt");
  7. }
  8.  
  9. ?>
  10. <div class="box_smallcontainer">
  11.     <div class="box_title">
  12.         AR-Check
  13.     </div>
  14.     <div class="box_item">
  15.         <form method="post" action="<?=$_SERVER[PHP_SELF]?>">
  16.            
  17.             Bitte Code abtippen: <? echo $_SESSION['random_key']; ?>&nbsp;
  18.             <input type="hidden" name="archeck3x" value="ARC" />
  19.             <input type="text" name="confirm" /> <input type="submit" name="archeck3x" value="ARC best&auml;tigen" />
  20.         </form>
  21.     </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement