Ben bir iletişim formu için bir captcha yarattı. Her şey çalışıyor ama Captcha forma girmek ne olursa olsun sayı her zaman geçersiz Captcha'yı gösterir
<?php
if(isset($_POST['norobot']))
{
if(md5($_POST['norobot']) == $_SESSION['randomnr2'])
{
echo "Validation Success";
$_SESSION['name'] = $name ;
$_SESSION['phone_no'] = $phone;
$_SESSION['mailid'] = $mailid;
$_SESSION['msg'] = $msg;
$_SESSION['category'] = $category;
header("Location:thankyou.php");
}
else
{
$Error = 'Invalid CAPTCHA';
}
}
}
?>
Herhangi bir çözümdür ne diyebilirim?