pdf 출력시 단순 변환 문의입니다.
본문
$tbl .= <<<EOD
</tbody>
<tfoot>
<tr style="line-height:18px;background-color:#deeaf6;">
<th colspan="14" align="left" class="td_14"> End of Document, generated by Training Management System</th>
</tr>
<tr>
<th colspan="14" align="left" class="td_14"> Printed at </th>
</tr>
<tr>
<th colspan="14" align="left" class="td_14"> End of Document, generated by Training Management System</th>
</tr>
</tfoot>
</table>
EOD;
로 하면 현재 이렇게 나옵니다.
위 처럼 바꾸려면 어떻게 하면될까요?
Printed at 뒤에는 출력한 날짜가 나오게 하고 싶습니다.
!-->
답변 1
$at_date= date( 'Y-m-d');
$tbl .= <<<EOD
...
<th colspan="14" align="left" class="td_14"> Printed at $at_date </th>
...
EOD;
답변을 작성하시기 전에 로그인 해주세요.