Codeigniter-Barcode icon indicating copy to clipboard operation
Codeigniter-Barcode copied to clipboard

not working

Open Soyelliton opened this issue 2 years ago • 1 comments

this poject is not working

Soyelliton avatar May 07 '23 22:05 Soyelliton

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).'">';

ariefrs avatar Oct 15 '24 11:10 ariefrs