Re: [PHP] HELP with forms

2002-08-02 Thread Bob Lockie
On Fri, 2 Aug 2002 12:14:51 -0500, Dave Leather wrote: >Is there a way to read a FORM varaiable into PHP variable. The kicker here >is the form variable is in a framed window. > >Example, I have my main page in a 2 part frame (90%/10%). The bottom 10% >has a form on it called 'fileform' with on

Re: [PHP] HELP with forms

2002-08-02 Thread Michael Sweeney
What do you mean, "return it to a php variable"? The closest I can come to understanding your question is that you want the form input in your bottom frame to be sent to another frame in your top window for submission. If that's any place close to correct, you need a javascript solution. In any

[PHP] HELP with forms

2002-08-02 Thread Dave Leather
Is there a way to read a FORM varaiable into PHP variable. The kicker here is the form variable is in a framed window. Example, I have my main page in a 2 part frame (90%/10%). The bottom 10% has a form on it called 'fileform' with one text box called filevalue -- source snippit -- -- end

Re: [PHP] Help with forms data please

2002-06-12 Thread 1LT John W. Holmes
esday, June 12, 2002 7:33 AM Subject: [PHP] Help with forms data please I need to send the data from a form without taking the surfer to that page. ie: form on ' formPage.php ' with but leave the user on ' formPage.php' Any way to do that? Thanks -- PHP General Mailing

RE: [PHP] Help with forms data please

2002-06-12 Thread Niklas Lampén
as -Original Message- From: Jonathan Rosenberg [mailto:[EMAIL PROTECTED]] Sent: 12. kesäkuuta 2002 16:18 To: Bret L Conard; [EMAIL PROTECTED] Subject: RE: [PHP] Help with forms data please How about if you just return the user to the same page? Will that work? > -Original Message

RE: [PHP] Help with forms data please

2002-06-12 Thread Jonathan Rosenberg
How about if you just return the user to the same page? Will that work? > -Original Message- > From: Bret L Conard [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 12, 2002 7:33 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Help with forms data please > > > I ne

RE: [PHP] Help with forms data please

2002-06-12 Thread Jay Blanchard
[snip] I need to send the data from a form without taking the surfer to that page. ie: form on ' formPage.php ' with but leave the user on ' formPage.php' Any way to do that? [/snip] At the end of newUser.php do a header redirect, i.e. header("Location: formPage.php"); exit; Make sure that new

[PHP] Help with forms data please

2002-06-12 Thread Bret L Conard
I need to send the data from a form without taking the surfer to that page. ie: form on ' formPage.php ' with but leave the user on ' formPage.php' Any way to do that? Thanks