Blame view

mobile/source/ext/captcha/form_example.php 475 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  session_start();
  ?>
  <form action="" method="post">
  <p>Enter text shown below:</p>
  <p><img src="./?<?php echo session_name()?>=<?php echo session_id()?>"></p>
  <p><input type="text" name="keystring"></p>
  <p><input type="submit" value="Check"></p>
  </form>
  <?php
  if(count($_POST)>0){
  	if(isset($_SESSION['captcha_keystring']) && $_SESSION['captcha_keystring'] == $_POST['keystring']){
  		echo "Correct";
  	}else{
  		echo "Wrong";
  	}
  }
  unset($_SESSION['captcha_keystring']);
  ?>