[PHP] RE : [PHP] Redirect URL

2003-09-23 Thread Youri B .
Thank you very much,

This was the reason I figured it out now. Thank you for good advise.

Yury

On 22 Sep 2003 at 14:39, BENARD  Jean-philippe wrote:

> Headers must be sent before anything else (text, html ...). If you put
> somewhere something like : echo "test";, php will send standard HTML
> header and you'll not be able to sent another headers.
> Be sure that nothing is sent before your header or put this test on top
> of the executed script.
> 
> Cordialement,
> Jean-Philippe BENARD
> Consultant STERIA Infogйrance
> ([EMAIL PROTECTED])
> 
> -Message d'origine-
> De═: Yury B. [mailto:[EMAIL PROTECTED] 
> Envoyй═: dimanche 21 septembre 2003 22:00
> А═: [EMAIL PROTECTED]
> Objet═: [PHP] Redirect URL
> 
> Hi 
> 
> I have form in file register.php. The action of this form is the same 
> - register.php the form validation script is included in this file 
> like include("mail.php") In mail.php there is two sections - one is 
> working if user didn't complete form properly another if everything 
> okay. So, I need form to show the different page (let's say 
> success.htm) if everything was filled right. I include the following 
> in the mail.php file if everything is okay: header("Location: 
> http://test.my/success.htm";); But it doesn't work even though all the 
> files are in 
> the same directory. 
> it shows:
> Warning: Cannot modify header information - headers already sent by 
> (output started at z:\home\test.my\www\register.php:5) in 
> z:\home\test.my\www\mail.php on line 41
> 
> What is wrong?
> 
> Yury
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 
> 
> 

<>< <>< <>< <>< God is our provider ><> ><> ><> ><> 
http://www.body-builders.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: php redirect

2002-07-26 Thread Brian McGarvie

if( ___ ) {
  header("Location: http://www.domain.com/itworked.php";);
} else {
  header("Location: http://www.domain.com/error.php";);
}


"Tyler Durdin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
>
> I have a redirect i would like to do using php. It will go something like
> this
> if (mysql_db_query ($dbname, $query, $link)) {
>   {redirect would go here}
> } else {
>  {a different location on this redirect here}
>
> How can i accomplish this? i just do not know php well enough to code the
> redirect. Please help. Thanks in advance and for all of the past help.
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php