v2.5.2
Giriş yap

Captcha Nedir?

Anonim
604 defa görüntülendi ve 2 kişi tarafından değerlendirildi
Cevap yaz
Cevaplar (1)
arduinoturkbatu
1336 gün önce

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ış";
    }
}
?>