Print forms
Moderator: General Moderators
-
Z3r0Tol3ranc3
- Forum Newbie
- Posts: 7
- Joined: Mon Jul 01, 2002 11:44 am
Print forms
does anyone knows the code 2 print a form content with multiple forms on 1 page and all sepperate printable
I don't quite understand the question. Are you trying to have multiple forms (such as <form action="...">...</form>) on a page, but have them share the same input fields?
Or are you wondering how to get the contents of multiple forms by using the $_POST variable? Note that you can only get the input of one form, since only one form can be submitted at a time.
Or are you wondering how to get the contents of multiple forms by using the $_POST variable? Note that you can only get the input of one form, since only one form can be submitted at a time.
-
Z3r0Tol3ranc3
- Forum Newbie
- Posts: 7
- Joined: Mon Jul 01, 2002 11:44 am
- hob_goblin
- Forum Regular
- Posts: 978
- Joined: Sun Apr 28, 2002 9:53 pm
- Contact:
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
JavaScript code for printing:
Code: Select all
<input type="button" onClick="window.print()" value="Print">