I am using PHP to generate a report dynamically. TCPDF is used to generate a PDF. I want to repeat a particular table at the beginning of each page. How can I detect the page breaks and do this?

$result_1      =db_query($sql_1);
while($row_1=db_fetch_array($result_1)) 
{
$table=
<tr><td width=100><b>Name</b></td>
<td width=50><b>No</b></td>
<td width=50><b>Date</td>
</tr>
<tr>
<td width=100>'.$row_1['name'].'</td>
<td width=50>'.$row_1['no'].'</td>
<td width=50>'.$row_1['date'].'</td>
</tr>
</table>';
}

I want to show that particular table at the beginning of each page. There are few other tables also in that while loop.

link|improve this question

50% accept rate
feedback

3 Answers

I would suggest putting the code for the one table in a seperate PHP file and use Include() just before the rest of the table output. This way when you include the page, it will run the DB query for it's self.

link|improve this answer
then how it detect the page breaks. – user922834 Sep 1 '11 at 5:56
if its a new page only i want to show this table.Not along with each table – user922834 Sep 1 '11 at 5:57
Ok so I might not understand what your asking. So you want the <tr><td width=100><b>Name</b></td> <td width=50><b>No</b></td> <td width=50><b>Date</td> </tr> Part to be on top of each table like a table header? – Wrenbjor Sep 1 '11 at 6:01
wait NVM I get it... you are making a PDF... so when the HTML data had gone past a "Page" you want the heading to show up and continue printing the data right? – Wrenbjor Sep 1 '11 at 6:03
that is another issue i am facing.i will make u this question sipler..is it possible to detect a pagebreak??.so that that i can put condition like.. if(pagebreak) { $pdf->writeHTML($table,true, false, false, false, ''); } – user922834 Sep 1 '11 at 6:09
feedback

i don't understand you exactly...but if you want this code to be implemented in all your site pages....and see this table at all your site pages you can do tha following 2 ways

1-by creating block and add this block at the top of your pages like the following

  • enable php filter module from /admin/build/modules

  • create a new block from admin/build/block/add/ and change input format to php format and add your php code in this block content

  • add this block at the top of your theme

2- simply add your code at the top of page.tpl.php theme file

i hop that will help u

link|improve this answer
feedback

You need to extend the TCPDF class and provide a custom function to render your header, which I believe will then be included at the top of every page.

There's an example of the code involved here, and a load more TCPDF examples here. You could use that example in conjunction with this one to do exactly what you need.

Hope that helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.