| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/rdmts/am/application/controllers/ |
Upload File : |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
date_default_timezone_set("Asia/Jakarta");
class c_print extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->library(array('session', 'pdflibrary'));
}
//cetak_kartu_ujian
public function m_cetak_kartu()
{
$data = $this->db->query("SELECT * FROM m_siswa")->result_array();
$nama_sekolah = $this->config->item('nama_sekolah');
$nama_ujian = $this->config->item('nama_ujian');
$pdf = new FPDF('P', 'mm', 'A4');
$pdf->AddPage();
foreach ($data as $load) {
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(80, null, $pdf->Image('___/img/man1.png', null, null, 10, 10), 0, 0, 'C');
$pdf->Cell(80, 3, 'KARTU PESERTA UJIAN', 0, 1, 'C');
$pdf->Cell(80, 3, $nama_sekolah, 0, 1, 'C');
$pdf->Cell(80, 3, $nama_ujian . $pdf->SetLineWidth(1), 0, 1, 'C');
$pdf->SetFont('Arial', '', 8);
$pdf->Cell(25, 10, 'NAMA', 0, 0);
$pdf->Cell(40, 10, ': ' . $load['nama'], 0, 0, 'L');
$pdf->Ln(3);
$pdf->Cell(25, 10, 'KELAS', 0, 0);
$pdf->Cell(10, 10, ': ' . $load['jurusan'] . ' ' . $load['id_jurusan'], 0, 0, 'L');
$pdf->Ln(4);
$pdf->Cell(25, 10, 'USERNAME', 0, 0);
$pdf->Cell(30, 10, ': ' . $load['nim'], 0, 0, 'L');
$pdf->Ln(3);
$pdf->Cell(25, 10, 'PASSWORD', 0, 0);
$pdf->Cell(10, 10, ': ' . $load['nim'], 0, 1, 'L');
// ======== footer ========= //
// $pdf->Footer1();
}
$pdf->Output();
}
}