Re: [PHP] passing variables from forms to the same page repetatively

2001-07-18 Thread Tim Olsen
This function that matt sent to automatically write hidden inputs is awesome. it works great. I am only using the first function. It's a great solution. thanks Original Message Follows From: maatt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [PHP] passing variables from forms

RE: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread Matthew Loff
INPUT TYPE=HIDDEN NAME=name_of_variable VALUE=value_of_variable -Original Message- From: Tim Olsen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 2:12 AM To: [EMAIL PROTECTED] Subject: [PHP] passing variables from forms to the same page repetatively People, I have 4 forms

Re: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread David Robley
On Tue, 17 Jul 2001 15:41, Tim Olsen wrote: People, I have 4 forms in four seperate html pages included directly (no links to includes) in the same .php file, i have it so all the form actions is php.self, so when each form is submitted it goes on to display the next form in line, using if

Re: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread Tim Olsen
PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tim Olsen [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: [PHP] passing variables from forms to the same page repetatively Date: Tue, 17 Jul 2001 16:13:41 +0930 On Tue, 17 Jul 2001 15:41, Tim Olsen wrote: People, I have 4 forms in four seperate html

Re: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread Sheridan Saint-Michel
Robley [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tim Olsen [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: [PHP] passing variables from forms to the same page repetatively Date: Tue, 17 Jul 2001 16:13:41 +0930 On Tue, 17 Jul 2001 15:41, Tim Olsen wrote: People, I have 4 forms

Re: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread Michael Hall
], [EMAIL PROTECTED] Subject: Re: [PHP] passing variables from forms to the same page repetatively Date: Tue, 17 Jul 2001 16:13:41 +0930 On Tue, 17 Jul 2001 15:41, Tim Olsen wrote: People, I have 4 forms in four seperate html pages included directly (no links to includes) in the same

Re: [PHP] passing variables from forms to the same page repetatively

2001-07-17 Thread Dave Freeman
On 17 Jul 01, at 0:11, Tim Olsen wrote: So far, I can only use variables on the next page (form) that is written out. After that those variables have no value. Is there some way to submit Investigate using input type=hidden form tages - very useful for passing around additional args

[PHP] passing variables from forms to the same page repetatively

2001-07-16 Thread Tim Olsen
People, I have 4 forms in four seperate html pages included directly (no links to includes) in the same .php file, i have it so all the form actions is php.self, so when each form is submitted it goes on to display the next form in line, using if and else statements, of course. I want to be