ok
Direktori : /home2/selectio/public_html/saew.in/admin/print-form/ |
Current File : /home2/selectio/public_html/saew.in/admin/print-form/induction-form.php |
<?php ob_start(); session_start(); include"../config/config.php"; $id=$_POST['id']; //$id=51; //$statement = $pdo->prepare("SELECT * FROM tbl_user where id ='$id'"); $statement = $pdo->prepare("SELECT tbl_user.*,(SELECT departement from tbl_departement WHERE id=tbl_user.department_id) as department_name,(SELECT desgination from tbl_desgination WHERE id=tbl_user.designation_id) as designation_name,tbl_branch.branch_name,tbl_branch.branch_location,tbl_branch.address as branch_address FROM `tbl_user` inner join tbl_branch on tbl_user.branch_id=tbl_branch.id where tbl_user.id ='$id'"); $statement->execute(); $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); if($totalData){ foreach($emp_data as $data){ $content=' <center><u class="compnay_name11">M.SUNDARDAS & SONS</u></center><br> <center><span class="address11">'.$data['branch_address'].'</span></center> <center><u style="font-family: Calibri;font-size:18px;font-weight: bold;">INDUCTION TRAINING</u></center> <center><u style="font-family: Calibri;font-size:14px;font-weight: bold;">தொழிலாளர்கள் அறிமுக பயிற்சி</u></center> <center><u style="font-family: Calibri;font-size:14px;font-weight: bold;">प्रेरण प्रशिक्षण; शुरुआती प्रशिक्षण</u></center> <br><br> <table style="width:100%;"> <tr> <td style="width: 55%;">NAME / <span class="tamil-font-size">பெயர் / नाम</span> :</td> <td>'.$data['emp_name'].'</td> </tr> </table> <br> <table style="width:100%;"> <tr> <td style="width: 55%;">DESIGNATION / <span class="tamil-font-size">பணி / पद</span> : </td> <td>'.$data['designation_name'].'</td> </tr> </table> <br> <table style="width:100%;"> <tr> <td style="width: 55%;"">ID NUMBER / அடையாள அட்டை எண் / आईडी नंबर : </td> <td>'.$data['emp_code'].'</td> </tr> </table> <br> <table style="width:100%;"> <tr> <td style="width: 55%;">DATE OF JOIN / பணியில் சேர்ந்த நாள் / शामिल होने की तिथि :</td> <td>'.date('d-m-Y', strtotime($data['joining_date'])).'</td> </tr> </table> <br> <br> <p style="font-family: Calibri;font-size:12px;line-height: 2.2;">            <span style="font-size:16px;line-height: 2.2;">Safety equipment used in our factory Training workers on methods and its benefits Provided by introductory training manual </span> / <span style="font-size:12px;line-height: 2.2;"> நம் தொழிற்சாலையில் பயன்படுத்தும் பாதுகாப்பு உபகரணங்களை பற்றிய வழிமுறைகள் மற்றும் அதன் பயன்கள் பற்றிய பயிற்சியான தொழிலாளர்கள் அறிமுக பயிற்சி கையேடு மூலம் வழங்கப்பட்டது / हमारे कारखाने में उपयोग किए जाने वाले सुरक्षा उपकरण कर्मचारियों को तरीकों और इसके लाभों पर प्रशिक्षण देना परिचयात्मक प्रशिक्षण मैनुअल द्वारा प्रदान किया गया </span> </p> <br> <p style="font-family: Calibri;font-size:14px;line-height: 2.2;">            <span style="font-size:16px;line-height: 2.2;">The concepts given through this exercise are very clearly understand.</span> <span style="font-size:12px;line-height: 2.2;">இப்பயிற்சியின் மூலம் கொடுக்கப்பட்ட கருத்துகள் மிக தெளிவான முறையில் விளங்கியது / इस अभ्यास के माध्यम से दी गई अवधारणाएँ बहुत स्पष्ट हैं पद्धति से समझाया गया </span> </P> <br><br> <br> <table style="width: 100%;"> <tr> <td>Authorised Signatory </td> <td style="text-align: center;">Signature of the Applicant</td> </tr> <tr> <td class="tamil-font-size"> நிறுவன மேலாளர் </td> <td class="tamil-font-size" style="text-align: center;">விண்ணப்பதாரின் கையொப்பம்</td> </tr> <tr> <td class="tamil-font-size"> अधिकृत हस्ताक्षरकर्ता </td> <td style="text-align: center;" class="tamil-font-size">आवेदक के हस्ताक्षर</td> </tr> </table> <style> .compnay_name11{ font-family: Algerian Regular; font-size:26px; font-weight: bold; } .address11{ font-family: Calibri; font-size:11px;font-weight: bold; } td{ font-family: Calibri; font-size:14px;font-weight: bold; } .tamil-font-size{ font-family: Calibri; font-size:12px; } </style>'; }}else{ $content='<center>Empty</center>';} echo $content;