Re: [PHP] Help with forms data please

2002-06-12 Thread 1LT John W. Holmes
Make the target of the form a blank window. process the form, then generate some javascript to close the window. original window remains unchanged. ---John Holmes... - Original Message - From: "Bret L Conard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 12, 2002 7:33

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 need to send the data from a

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