Hello,
I'm trying to print results from a mysql database on a printer friendly page I created.
I'm printing multiple records at once, and I would like to have each new record from the while loop to display on a new page.
I trying css page-break, but I the results don't show up on separate pages.
Heres what i'm doing:
While () {
<p class="breakhere">
<table><tr><td>
Content here
</td></tr></table>
</p>
}
And I use this css in my stylesheet:
p.breakhere {page-break-after: always}
Can someone please help me... let me know why it's not working.
Thanks in advance for any help