Viewing file: exportDocHTML3.php (4.07 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include_once("../../class/clsConnection.php"); include_once("../../class/clsDB.php"); include_once "../global.php"; include_once "../class/clsDocType.php"; include_once "../link/keyThai.php"; include_once "../link/functionshow.php"; include_once "funct.php"; include_once "../link/keyThai.php"; include_once "../class/clsDocSpeedLevel.php"; include_once "../class/clsDocSecreLevel.php"; include_once "functforRptEx.php";
if($typeDoc=="printword"){ header("Content-Type: application/msword"); header('Content-Disposition: attachment; filename="Doc1.doc"'); }
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']); $oDt = new doctype($oC); $InputThai=$oSys->SearchByInputThai(); $oDsl = new DocSpeedLevel($oC); $oDcl = new DocSecretLevel($oC); ?> <style type="text/css"> div.img-show img { width: 1.5cm; height: 1.5cm; overflow: hidden; text-align: center; } </style> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> <? if($typeDoc=="printhtml"){ ?> <link href="../source/style.css" rel="stylesheet" type="text/css"> <? }?> </head> <body> <table width="90%" align="center"> <tr><td > <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" > <? if($DclID!=0){ ?> <tr> <td align="center" colspan=2><? $oDcl->SearchByKey($DclID); $oDcl->GetRecord(); echo $oDcl->DclName;?></td> </tr> <? }?> <tr> <td align="left" colspan=2> <? if($typeDoc=="printhtml"){ ?> <div class="img-show"> <img src="../picture/Tra-Khrut.gif"> <? if($DslID!=0){ ?> <? $oDsl->SearchByKey($DslID); $oDsl->GetRecord(); echo $oDsl->DslName;?> <? }?> </div> <? } ?> </td> </tr> <tr> <td colspan=2 align=center><font size=4><b>บันทึกข้อความ</b></font></td> </tr> <tr> <td align=left colspan=2><? echo ShowNameDeptCreate($dt); ?></td> </tr> <tr> <td width=50% align=left><? echo ShowNameDocNo($dt); ?> <? echo $DocNo;?></td> <td><? echo ShowNameDate($dt);?> <? list($day1,$month1,$year1) = preg_split('[/]',$DocDate); $s=$day1."-".$month1."-".$year1; echo fullDateRpt($s); ?> </td> </tr> <tr> <td align=left colspan=2><? echo ShowNameSubject($dt); ?></td> </tr> <tr> <td align=left colspan=2><? echo $DocTo2;?></td> </tr> <tr> <td colspan=2> </td> </tr> <tr> <td colspan=2><p style="text-align: justify;"> <? echo nl2br($DocDetail1); ?></p></td> </tr> <? if($DocDetail2!=''){ ?> <tr> <td colspan=2><p style="text-align: justify;"> <? echo nl2br($DocDetail2); ?></p></td> </tr> <? }?> <? if($DocDetail3!=''){ ?> <tr> <td colspan=2><p style="text-align: justify;"> <? echo nl2br($DocDetail3); ?></p></td> </tr> <? }?> <? if($DocDetail4!=''){ ?> <tr> <td colspan=2><p style="text-align: justify;"> <? echo nl2br($DocDetail4); ?></p></td> </tr> <? }?> <tr> <td align=left colspan=2> </td> </tr> <tr> <td> </td><td align=left><? echo $DocEnd;?></td> </tr> <tr> <td align=left colspan=2> </td> </tr> <tr> <td align=center colspan=2><p style="padding-left: 10%;"><? echo $DocEndSign;?></p></td> </tr> <tr> <td align=center colspan=2><p style="padding-left: 10%;"><? echo $DocPosition;?></p></td> </tr> <? if($DclID!=0){ ?> <tr> <td align="center" colspan=2><? $oDcl->SearchByKey($DclID); $oDcl->GetRecord(); echo $oDcl->DclName;?></td> </tr> <? }?> </table> </td></tr></table> </body> </html>
|