Паркан
Новичок
Дата регистрации:
30.10.2012 19:40:33
Сообщений: 15
<img src="../user/captcha.php?sid=<?php echo rand(10000, 99999); ?>" width="120" height="20" alt="" />
<input type="text" autocomplete="off" name="captcha" id="captcha"> <img id="captcha_error" src="/img/red_cross.png"></td>
JS
$('#captcha').change(function () {
var captcha = document.getElementById("captcha".value ;
if (captcha == '') return false ;
$.ajax({
type: "GET",
url: "../user/cap_test.php",
data: {mode: 'captcha_check',data: captcha},
success: function(msg){
if (msg == 1){
document.getElementById("captcha_error".src = '../img/ok.jpg' ;
}
else if (msg == 0){
document.getElementById("captcha_error".src = '../img/red_cross.png' ;
}
}
});
});
cap_test.php
<?php
session_start();
if ( isset($_POST['captcha_check']) )
{
$code = $_POST['captcha_check'];
if ( isset($_SESSION['captcha']) && strtoupper($_SESSION['captcha']) == strtoupper($code) )
{ $msg=1;echo $msg; }
else
{ $msg=0;echo $msg; }
unset($_SESSION['captcha']);
exit();
}
?>
Но не работает это все. Есть подозрения, что ошибка в html части. Что не так?