DF - Membuat barcode dengan library ZEND.
Buat function Barcode
public function Barcode($kodenya)
{
$this->zend->load('Zend/Barcode');
Zend_Barcode::render('code128', 'image', array('text' => $kodenya));
}
Buat tampilan
<td> <img src="<?php echo site_url('master/obat/Barcode/'.$row->kd_obat); ?>" alt=""> </td>
0 comments:
Post a Comment