dourong8495 2014-07-16 10:02
浏览 44

为什么验证码图像在codeigniter中显示

Here is my code of captcha.php.I am new to codeigniter so please help me out. I want to display the captcha image in the browser but the image is not getting displayed over there. Can anyone tell me where i doing wrong.

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Captcha extends CI_Controller{

    public function index(){

        echo "HELLO CAPTCHA <br>";      

        $this->load->helper('captcha');


        $val = array(           
            'word'          => 'Random 123',
            'img_path'      => './Code__Igniter/application/captcha/',
            'img_url'       => 'http://localhost/Code__Igniter/index.php/captcha/',
            'font_path'     => './Code__Igniter/system/fonts/texb.ttf',
            'img_width'     => '300',
            'img_height'   => '50',
            'expiration'    => '3600', 
        );


        $img = create_captcha($val);

        echo $img['time'];
        echo $img['word'];

        $data['imag'] = $img['image'];  

        $this->load->view('header_view');

        $this->load->view('main_view',$data);

    }
}
  • 写回答

2条回答 默认 最新

  • duanhuau567787 2014-07-16 10:34
    关注

    You just Have to

    <div>
    <?php
    echo $imag;
    ?>
    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测