キャプチャスクリプトがあります
次のコードを使用します。
include 'kcaptcha/kcaptcha.php';
$path = "/";
//this line will produce captcha image
$captcha = new KCAPTCHA();
//writing the cookie so that we can check on next page
//captcha value save as md5 encryption so that when validating is should make md5 mask to captcha form input
setcookie("captcha", md5($captcha->getKeyString()), time()+1000, $path);
このコードはローカルホストでは機能しますが、私のライブWebサイトでは機能しません。なにが問題ですか?
ありがとうございました