Hi,

* [EMAIL PROTECTED] wrote:
> Warning: Cannot add header information - headers already sent by (output
> started at /var/www/html/test.php:5) in /var/www/html/test.php on line 15

You see that the output began on /var/www/html/test.php on
line 5. It may be a char or even a whitespace.

Normally you shouldn't have any output before the Header()
call. But you could also use output buffering to have output
even before the header calls (PHP will sort the output stacks
and send the header stack first), i.e.
 
<?php
  ob_start();
  print "Hello";
  Header("Location: http://www.php.net/";);
?>

-- 
PHP Magazines for Professionals

PHP Magazin               *                          PHP Magazine
http://www.phpmag.de/     *               http://www.php-mag.net/
German Edition            * International Edition with own topics

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

Reply via email to