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

2001-07-18 Thread Tim Olsen
assing variables from forms to the same page repetatively Date: Tue, 17 Jul 2001 11:23:11 +0100 I was doing something similar just yesterday. Ended up with a little function to automatically write hidden s for every variable that's submitted, whether posted or thru the url. Goes like this... //

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 form tages - very useful for passing around additional args between pages/forms.

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

2001-07-17 Thread Michael Hall
> > 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:

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

2001-07-17 Thread Neil Kimber
essage Follows From: David 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,

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

2001-07-17 Thread Sheridan Saint-Michel
> -Tim > > > Original Message Follows > From: David 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 > repetati

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

2001-07-17 Thread Tim Olsen
AIL 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 h

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

2001-07-17 Thread maatt
I was doing something similar just yesterday. Ended up with a little function to automatically write hidden s for every variable that's submitted, whether posted or thru the url. Goes like this... // put this somewhere in your form // the function itself function get_param_inputs() { global $

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

2001-07-16 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

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

2001-07-16 Thread Matthew Loff
-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 in four seperate html pages included directly (no links to

[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 able