[PHP] Re: Directing form to different handlers?

2009-06-01 Thread Clancy
On Mon, 1 Jun 2009 12:53:31 +1000, angusm...@pobox.com (Angus Mann) wrote: Hi all. I realize this is more an HTML question than PHP but I'm sure someone here can help. I have several forms with lots (dozens) of text inputs. If the user presses the Update button I want the form handled by

[PHP] Re-directing

2002-07-24 Thread Roberts, Mark
Is there a way to redirect to a different script in PHP? I call it redirecting, but can't find it in the documentation using that track. I have a script...that if a certain criteria is met, I want to load a different script. Haven't been able to figure that out yet. I have gotten about it by

Re: [PHP] Re-directing

2002-07-24 Thread B i g D o g
Check under header() in the docs... .: B i g D o g :. - Original Message - From: Roberts, Mark [EMAIL PROTECTED] To: PHP Mailing list (E-mail) [EMAIL PROTECTED] Sent: Wednesday, July 24, 2002 8:28 AM Subject: [PHP] Re-directing Is there a way to redirect to a different script

RE: [PHP] Re-directing

2002-07-24 Thread Balaji Ankem
Use header() function.. Header('Location: script name'); Best Regards Balaji -Original Message- From: Roberts, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 7:58 PM To: PHP Mailing list (E-mail) Subject: [PHP] Re-directing Is there a way to redirect to a different

Re: [PHP] Re-directing

2002-07-24 Thread Martin Clifford
PHP redirects using the header() function, but it's not very useful if information has already been sent to the browser. ANY information, including a hard return. So if you have a login script, you would start your session, register any variables, then redirect. ?php header(Location:

Re: [PHP] Re-directing

2002-07-24 Thread Chris Sharkey
with ob_end_flush(); Chris. - Original Message - From: Martin Clifford [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, July 25, 2002 12:47 AM Subject: Re: [PHP] Re-directing PHP redirects using the header() function, but it's not very useful if information has

Re: [PHP] Re-directing

2002-07-24 Thread Martin Clifford
: Martin Clifford [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, July 25, 2002 12:47 AM Subject: Re: [PHP] Re-directing PHP redirects using the header() function, but it's not very useful if information has already been sent to the browser. ANY information, including

RE: [PHP] Re-directing

2001-05-17 Thread scott [gts]
: Wednesday, May 16, 2001 4:58 PM To: scott [gts] Subject: RE: [PHP] Re-directing At 14:56 16-5-01 -0400, you wrote: if you need to redirect a page, why not juse use header(Location: ./newurl.php); ?? or, as was suggested, use the apache directive to do it for you if you have access

Re: [PHP] Re-directing

2001-05-16 Thread B. van Ouwerkerk
If you're hosting on a apache box you could have something like DirectoryIndex start.php Forgot to mention: You can add this to .htaccess Bye, B. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] Re-directing

2001-05-13 Thread Raquel Rice
Todd Cary wrote: In my Index.html, what do I write so that the Surfer goes to my Start.Php? Todd I use a little bit of javascript ... script language=JavaScript location = newURL.php; /script inside the head/head tags. -- Raquel

[PHP] Re-directing

2001-05-12 Thread Todd Cary
In my Index.html, what do I write so that the Surfer goes to my Start.Php? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] Re-directing

2001-05-12 Thread Young Chi-Yeung Fan
Todd Cary wrote: In my Index.html, what do I write so that the Surfer goes to my Start.Php? It should work to have this after your opening HTML tag in index.html: meta http-equiv=refresh content=0; url=start.php / -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: