Viewing file: exportDocHTML1.php (4.78 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: 3cm; height: 3cm; 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> <? }?> <? if($typeDoc=="printhtml"){ ?> <tr><td align="center" height="22" colspan=2><div class="img-show"><img src="../picture/Tra-Khrut.gif"></div></td></tr> <? } ?> <? if($DslID!=0){ ?> <tr> <td align="left" colspan=2><? $oDsl->SearchByKey($DslID); $oDsl->GetRecord(); echo $oDsl->DslName;?></td> </tr> <? }?> <tr> <td align=left><? echo ShowNameDocNo($dt); ?> <? echo $DocNo;?></td><td align=right><? echo $DocDeptCreate;?></td> </tr> <tr> <td width=50%> </td><td align=left width=50%> <? 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); ?> <? echo $DocSubject;?></td> </tr> <tr> <td align=left colspan=2><? echo $DocTo2;?></td> </tr> <? if($DocRef!=''){ ?> <tr> <td align=left colspan=2><? echo $DocRef;?></td> </tr> <? }?> <? if($DocOther!=''){ ?> <tr> <td align=left colspan=2><? echo $DocOther;?></td> </tr> <? }?> <tr> <td align=left 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> <tr> <td align=left colspan=2> </td> </tr> <tr> <td align=left colspan=2><? echo $DocOwnerSign;?></td> </tr> <tr> <td align=left colspan=2>โทร. <? echo $DocPhone;?></td> </tr> <tr> <td align=left colspan=2>โทรสาร <? echo $DocFax;?></td> </tr> <? if($DocOther!=''){ ?> <tr> <td align=left colspan=2><? echo $DocOther;?></td> </tr> <? }?> <tr> <td align=left colspan=2> </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>
|