page break vs footer while printing
Posted: Tue Jan 06, 2009 5:43 am
I need some information about the page break
I have one html table which is of displaying like footer where some kind of information is shown
when i now click the print button is there any way to include the html table content before the page break start.
EG.
->Header
->dynamically generated report.
->footer before the page break(footer to display ID and date information on each page printed)
I have done but no use which is a part of include footer.php
I have one html table which is of displaying like footer where some kind of information is shown
when i now click the print button is there any way to include the html table content before the page break start.
EG.
->Header
->dynamically generated report.
->footer before the page break(footer to display ID and date information on each page printed)
I have done but no use which is a part of include footer.php
Code: Select all
<DIV style="page-break-before:always">
<table>
<tr>
<td width="93"><strong>Request ID:</strong></td>
<td width="32"> <?=$data['REQUEST_ID']?></td>
</tr>
<tr>
<td><strong>Request Date</strong></td>
<td> <?=$data['REP_DT']?></td>
</tr>
</table>
</DIV>