Captcha Nedir?
Captcha Nedir?
Captcha (Completely Automated Public Turing test to tell Computers and Humans Apart), en çok web formlarında kullanılır.
Amacı; bilgisayar programının girip işlem yapmamasıdır.
Bir örnek:
<form action="post">
<img src="captcha_url.png">
<input type="text" name="captcha" placeholder="Captcha'yı oku">
<button type="submit">SUBMIT</button>
</form>
<?php
if($_POST){
$captcha = $_POST['captcha'];
if($captcha == "captcharesmindeyazan"){
echo "Captcha doğru";
}else {
echo "Captcha yanlış";
}
}
?>