>How can I output before send header 
>I see some site some output and after that it Jump to >other site
>Is that maked by header localtion ??

no, if there\'s output first, then it\'s not using header(\"Location: whatever.php\"), 
because headers MUST be sent before any other output to the browser.

there are other ways to redirect a user to another page:
for example: 

<meta HTTP-EQUIV=\"REFRESH\" content=\"0; url=http://www.yourdomain.com/index.html\";> 

you could use some javascript to do it too.

-- 
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 administrators, e-mail: [EMAIL PROTECTED]

Reply via email to