I have a simple Zend-based form with reCaptcha element:
$form = new Zend_Form();
$form->setName('forgotpassword')
->setMethod('POST');
$public = Lyf_Config::get('recapctha.public');
$private = Lyf_Config::get('recapctha.private');
$recaptcha = new Zend_Service_ReCaptcha($public, $private);
$captcha = new Zend_Form_Element_Captcha('recaptcha',array(
'captcha' => 'ReCaptcha',
'captchaOptions' => array(
'captcha' => 'ReCaptcha',
'service' => $recaptcha
)));
$form->addElements(array($captcha));
$form->setDecorators(array(array('ViewScript', array('viewScript' => 'login/passwordform.phtml', 'escape' => false))));
Ben böyle eleman görmek istiyorum: http://webmasterblog.com.ua/wp-content/uploads/2009/07/recaptcha-example.gif. Ama bunun yerine, bu elemanın ben basit giriş metin öğesi bakın. Neyi yanlış yapıyorum?
Şimdiden teşekkür ederiz. Benim İngilizce için üzgünüm.