Captcha com codeigniter
Estava tentando colocar o helper CAPTCHA num form mas está não estou sabendo jogar a imagem na view.
Abaixo o controller:
//insere CAPTCHA
$this->load->helper('captcha');
$vals = array(
'word' => 'Random word',
'img_path' => base_url().'/img/',
'img_url' => base_url().'/img/',
'img_width' => '150',
'img_height' => 30,
'expiration' => 7200,
'word_length' => 8,
'font_size' => 16,
'img_id' => 'Imageid',
'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
// White background and border, black text and red grid
'colors' => array(
'background' => array(255, 255, 255),
'border' => array(255, 255, 255),
'text' => array(0, 0, 0),
'grid' => array(255, 40, 40)
)
);
$cap = create_captcha($vals);
Dai tentei jogar a variável $cap na view mas não aparece nada.
Como devo proceder?
Discussão (1)
Carregando comentários...