用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2160|回复: 1
收起左侧

[HELP] 验证码显示的每次都一样

[复制链接]
发表于 2012-10-22 18:30:06 | 显示全部楼层 |阅读模式
PHP复制代码
 
 $this->load->helper('captcha');
        $vals = array(
            'word' => rand(1000, 9999),
            'img_path' => './captcha/',
            'img_url' => base_url() . '/captcha/',
            'img_width' => '70',
            'img_height' => '22',
            'expiration' => 7200
        );
 
        $cap = create_captcha($vals);
 
        $data = array(
            'captcha_time' => $cap['time'],
            'ip_address' => $this->input->ip_address(),
            'word' => $cap['word']
        );
       
        $query = $this->db->insert_string('captcha', $data);
        $this->db->query($query);
        echo $cap['image'];
 
复制代码


FIREFOX下正常显示,但是IE下,每次刷新都是显示一样的数字,是怎么回事?

 楼主| 发表于 2012-10-23 21:33:08 | 显示全部楼层
已解决,貌似是我电脑有问题。。。。

本版积分规则