how can i insert custom header and footer on my multiple report page and group report per page.
Can you give us more details, are you using a report engine?
i am using php and mysql, i want make a printable page as report. and i want a custom header as, per page header.
Just use include files for headers and footers.
[php]<?php
include_once(‘header.php’);
//body contents go here
include_once(‘footer.php’);
?>[/php]