画像認証 securimage

git hubからdownloadします。
https://github.com/dapphp/securimage

git clone https://github.com/dapphp/securimage.git

早速使ってみます。

<img id="captcha" src="securimage/securimage_show.php">

なにこれ?

つかっていきます。

<?php
if($_POST&#91;"captcha_code"&#93;){
	require_once "securimage/securimage.php";
	$securimage = new Securimage();
	if($securimage->check($_POST['captcha_code'])==false){
			echo "error";
	} else {
		 	echo "success";
	}
}

?>
<form method="POST" name="form" action="">
<img id="captcha" src="securimage/securimage_show.php"><br>
<input type="text" name="captcha_code"><br>
<input type="submit" value="送信" class="submit">
</form>

おおおお