Codeigniter-Barcode
Codeigniter-Barcode copied to clipboard
not working
this poject is not working
In your controllers file
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
function __construct()
{
parent::__construct();
// Load ci_zend library
$this->load->library('ci_zend');
// Load in folder zend
$this->ci_zend->load('Zend/Barcode');
}
function set_barcode($number)
{
return Zend_Barcode::render('code128','image',array('text'=>$number), array());
}
}
In your views file
$barcode = '<img src="'.site_url('home/set_barcode/'.$formatted_number).'">';