Lets say i have 2 items from the database and there are 2 types of view. A LIST view, which just list each item in a row with a check box in front AND a DETAIL view which is more information on each individual items presented on its own page.
Example of LIST view
Code: Select all
__Check__.......FirstName........LastName...........Email........Balance......
[Check Box].......John..............Doe.........john@doe.com.......$100.......
[Check Box].......Tai...............Boe.........tai@boe.com........$1000......Code: Select all
First Name: John
Last Name: Doe
Email: john@doe.com
Invoice Breakdown
.
.
.
.
.
Balance: $100The question here is when you are in the LIST view, how can you check the 2 things and click on the Print button on the browser and have both items sent to the Printer in their DETAIL view?
The server where this resides is in some Datacenter where the printer is in the office, they aren't in the same Intranet so you can't use PHP's printer module.
Appreciate any help i can get.