hi all,
i needed help on what would be the method(s) to use if (let's say) i have 10 records displayed on the screen and beside each record there is a checkbox. if any of the checkboxes are checked and submit button is clicked, i need to output these records to a printer. what is the work around?
thanks!
Print selected records
Moderator: General Moderators
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: Print selected records
Since PHP executes on a web server, there is no way for someone to click on a button and initiate an action on the client computer. You need to do that in a client-side language, such as Javascript.jan_sc wrote:hi all,
i needed help on what would be the method(s) to use if (let's say) i have 10 records displayed on the screen and beside each record there is a checkbox. if any of the checkboxes are checked and submit button is clicked, i need to output these records to a printer. what is the work around?
thanks!