Forum Moderators: coopster
in my php page, i want some thing instead of afformation information to be display when printing. How can i do it?
let said i have a list of records that require 5 pages A4 size paper to be print out all, so i want the title of the record to be display at the top of each page and the word "approved by: XXX" and page number to be display at the bottom of each page when print out the reord list. Any idea? How and where i can do it or getting these example?
If you are using PHP to produce the pages, output them as PDF files, which will always print exactly as you lay them out (hence why they are so ubiquitous for print).
I suggest you get started with this free code library [fpdf.org], and this tutorial [fpdf.org] concerning headers and footers. Good luck!