Practical - 11 IWD

 

AIM : Salary Slip Generation in PDF Format

Using TCPDF Library


salary_slip.php

require_once('tcpdf/tcpdf.php'); include "db.php"; $emp_id = 1; $q = mysqli_query($conn,"SELECT * FROM employees WHERE emp_id=$emp_id"); $row = mysqli_fetch_assoc($q); $pdf = new TCPDF(); $pdf->AddPage(); $html = " <h2 align='center'>Salary Slip</h2> <hr> Employee Name: {$row['name']}<br> Department: {$row['department']}<br> Salary: {$row['salary']}<br> "; $pdf->writeHTML($html); $pdf->Output('salary_slip.pdf','I');

Comments

Popular posts from this blog

Unit I - Introduction to PHP

Practical - 1 IWD

Practical - 10 IWD