derekmorgan Posted August 6, 2013 Share Posted August 6, 2013 (edited) Good morning, I need some help with creating sort of a Print All button for a PHP/MySQL application. I have a table that displays a list of form results from my database on a search page. Using javascript, I give the user the ability to access each individual form by passing an id variable to a form page when they click on a row. Currently, the user would have to click on each row, get redirected to the form page and then print the page. I would like to give the user the ability to search, and then simply click a print button that will print out all of the forms. Could someone point me in the right direction? I've searched quite a bit, but all I can find are examples of pagination for printing out query results, which is a little different than what I'm trying to accomplish. Thanks, Derek Edited August 6, 2013 by derekmorgan Quote Link to comment Share on other sites More sharing options...
AbraCadaver Posted August 6, 2013 Share Posted August 6, 2013 Just have a button or link, that when clicked opens a new print_all.php. Loop through the results just as you do on the results page, except echo out the form with the data each time through the loop. You're doing the same thing except echoing out the form instead of a table row. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.