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.